Struct timely::logging::OperatesEvent
source · pub struct OperatesEvent {
pub id: usize,
pub addr: Vec<usize>,
pub name: String,
}
Expand description
The creation of an Operate
implementor.
Fields§
§id: usize
Worker-unique identifier for the operator.
addr: Vec<usize>
Sequence of nested scope identifiers indicating the path from the root to this instance.
name: String
A helpful name.
Trait Implementations§
source§impl Clone for OperatesEvent
impl Clone for OperatesEvent
source§fn clone(&self) -> OperatesEvent
fn clone(&self) -> OperatesEvent
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Columnar for OperatesEvent
impl Columnar for OperatesEvent
§type Ref<'a> = OperatesEventReference<<usize as Columnar>::Ref<'a>, <Vec<usize> as Columnar>::Ref<'a>, <String as Columnar>::Ref<'a>>
where
usize: 'a,
Vec<usize>: 'a,
String: 'a
type Ref<'a> = OperatesEventReference<<usize as Columnar>::Ref<'a>, <Vec<usize> as Columnar>::Ref<'a>, <String as Columnar>::Ref<'a>> where usize: 'a, Vec<usize>: 'a, String: 'a
For each lifetime, a reference with that lifetime. Read more
source§fn copy_from<'a>(&mut self, other: Self::Ref<'a>)
fn copy_from<'a>(&mut self, other: Self::Ref<'a>)
Repopulates
self
from a reference. Read moresource§fn into_owned<'a>(other: Self::Ref<'a>) -> Self
fn into_owned<'a>(other: Self::Ref<'a>) -> Self
Produce an instance of
Self
from Self::Ref<'a>
.§type Container = OperatesEventContainer<<usize as Columnar>::Container, <Vec<usize> as Columnar>::Container, <String as Columnar>::Container>
type Container = OperatesEventContainer<<usize as Columnar>::Container, <Vec<usize> as Columnar>::Container, <String as Columnar>::Container>
The type that stores the columnar representation. Read more
source§fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
Converts a sequence of the references to the type into columnar form.
source§fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
Converts a sequence of the type into columnar form. Read more
source§impl Container<OperatesEvent> for OperatesEventContainer<<usize as Columnar>::Container, <Vec<usize> as Columnar>::Container, <String as Columnar>::Container>
impl Container<OperatesEvent> for OperatesEventContainer<<usize as Columnar>::Container, <Vec<usize> as Columnar>::Container, <String as Columnar>::Container>
§type Borrowed<'a> = OperatesEventContainer<<<usize as Columnar>::Container as Container<usize>>::Borrowed<'a>, <<Vec<usize> as Columnar>::Container as Container<Vec<usize>>>::Borrowed<'a>, <<String as Columnar>::Container as Container<String>>::Borrowed<'a>>
where
usize: 'a,
Vec<usize>: 'a,
String: 'a
type Borrowed<'a> = OperatesEventContainer<<<usize as Columnar>::Container as Container<usize>>::Borrowed<'a>, <<Vec<usize> as Columnar>::Container as Container<Vec<usize>>>::Borrowed<'a>, <<String as Columnar>::Container as Container<String>>::Borrowed<'a>> where usize: 'a, Vec<usize>: 'a, String: 'a
The type of a borrowed container. Read more
source§impl Debug for OperatesEvent
impl Debug for OperatesEvent
source§impl<'de> Deserialize<'de> for OperatesEvent
impl<'de> Deserialize<'de> for OperatesEvent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<OperatesEvent> for TimelyEvent
impl From<OperatesEvent> for TimelyEvent
source§fn from(v: OperatesEvent) -> TimelyEvent
fn from(v: OperatesEvent) -> TimelyEvent
Converts to this type from the input type.
source§impl Hash for OperatesEvent
impl Hash for OperatesEvent
source§impl Ord for OperatesEvent
impl Ord for OperatesEvent
source§fn cmp(&self, other: &OperatesEvent) -> Ordering
fn cmp(&self, other: &OperatesEvent) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<R0, R1, R2> PartialEq<OperatesEvent> for OperatesEventReference<R0, R1, R2>
impl<R0, R1, R2> PartialEq<OperatesEvent> for OperatesEventReference<R0, R1, R2>
source§impl PartialEq for OperatesEvent
impl PartialEq for OperatesEvent
source§impl PartialOrd for OperatesEvent
impl PartialOrd for OperatesEvent
source§impl<'columnar, C0, C1, C2> Push<&'columnar OperatesEvent> for OperatesEventContainer<C0, C1, C2>
impl<'columnar, C0, C1, C2> Push<&'columnar OperatesEvent> for OperatesEventContainer<C0, C1, C2>
source§fn push(&mut self, item: &'columnar OperatesEvent)
fn push(&mut self, item: &'columnar OperatesEvent)
Pushes an item onto
self
.source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.source§impl<C0, C1, C2> Push<OperatesEvent> for OperatesEventContainer<C0, C1, C2>
impl<C0, C1, C2> Push<OperatesEvent> for OperatesEventContainer<C0, C1, C2>
source§fn push(&mut self, item: OperatesEvent)
fn push(&mut self, item: OperatesEvent)
Pushes an item onto
self
.source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.source§impl Serialize for OperatesEvent
impl Serialize for OperatesEvent
impl Eq for OperatesEvent
impl StructuralPartialEq for OperatesEvent
Auto Trait Implementations§
impl Freeze for OperatesEvent
impl RefUnwindSafe for OperatesEvent
impl Send for OperatesEvent
impl Sync for OperatesEvent
impl Unpin for OperatesEvent
impl UnwindSafe for OperatesEvent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.