pub struct TraceShareContainer<C0, C1> {
pub operator: C0,
pub diff: C1,
}
Expand description
Derived columnar container for a struct.
Fields§
§operator: C0
Container for #names.
diff: C1
Container for #names.
Trait Implementations§
Source§fn clone(&self) -> TraceShareContainer<C0, C1>
fn clone(&self) -> TraceShareContainer<C0, C1>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§type Borrowed<'a> = TraceShareContainer<<<usize as Columnar>::Container as Container<usize>>::Borrowed<'a>, <<isize as Columnar>::Container as Container<isize>>::Borrowed<'a>>
where
usize: 'a,
isize: 'a
type Borrowed<'a> = TraceShareContainer<<<usize as Columnar>::Container as Container<usize>>::Borrowed<'a>, <<isize as Columnar>::Container as Container<isize>>::Borrowed<'a>> where usize: 'a, isize: 'a
The type of a borrowed container. Read more
Source§fn default() -> TraceShareContainer<C0, C1>
fn default() -> TraceShareContainer<C0, C1>
Returns the “default value” for a type. Read more
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§type Ref = TraceShareReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 as Index>::Ref>
type Ref = TraceShareReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 as Index>::Ref>
The type returned by the
get
method. Read morefn get(&self, index: usize) -> Self::Ref
fn last(&self) -> Option<Self::Ref>where
Self: Len,
Source§fn index_iter(&self) -> IterOwn<&Self>
fn index_iter(&self) -> IterOwn<&Self>
Converts
&self
into an iterator. Read moreSource§type Ref = TraceShareReference<<C0 as Index>::Ref, <C1 as Index>::Ref>
type Ref = TraceShareReference<<C0 as Index>::Ref, <C1 as Index>::Ref>
The type returned by the
get
method. Read morefn get(&self, index: usize) -> Self::Ref
fn last(&self) -> Option<Self::Ref>where
Self: Len,
Source§fn index_iter(&self) -> IterOwn<&Self>
fn index_iter(&self) -> IterOwn<&Self>
Converts
&self
into an iterator. Read moreSource§fn push(&mut self, item: &'columnar TraceShare)
fn push(&mut self, item: &'columnar TraceShare)
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§fn push(&mut self, item: TraceShare)
fn push(&mut self, item: TraceShare)
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§fn push(&mut self, item: TraceShareReference<R0, R1>)
fn push(&mut self, item: TraceShareReference<R0, R1>)
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
.Auto Trait Implementations§
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§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.