pub struct DropEventReference<R0, R1> {
pub operator: R0,
pub length: R1,
}
Expand description
Derived columnar reference for a struct.
Fields§
§operator: R0
Field for #names.
length: R1
Field for #names.
Trait Implementations§
Source§impl<R0: Clone, R1: Clone> Clone for DropEventReference<R0, R1>
impl<R0: Clone, R1: Clone> Clone for DropEventReference<R0, R1>
Source§fn clone(&self) -> DropEventReference<R0, R1>
fn clone(&self) -> DropEventReference<R0, R1>
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<R0, R1> PartialEq<DropEvent> for DropEventReference<R0, R1>
impl<R0, R1> PartialEq<DropEvent> for DropEventReference<R0, R1>
Source§impl<C0, C1, R0, R1> Push<DropEventReference<R0, R1>> for DropEventContainer<C0, C1>
impl<C0, C1, R0, R1> Push<DropEventReference<R0, R1>> for DropEventContainer<C0, C1>
Source§fn push(&mut self, item: DropEventReference<R0, R1>)
fn push(&mut self, item: DropEventReference<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
.impl<R0: Copy, R1: Copy> Copy for DropEventReference<R0, R1>
Auto Trait Implementations§
impl<R0, R1> Freeze for DropEventReference<R0, R1>
impl<R0, R1> RefUnwindSafe for DropEventReference<R0, R1>where
R0: RefUnwindSafe,
R1: RefUnwindSafe,
impl<R0, R1> Send for DropEventReference<R0, R1>
impl<R0, R1> Sync for DropEventReference<R0, R1>
impl<R0, R1> Unpin for DropEventReference<R0, R1>
impl<R0, R1> UnwindSafe for DropEventReference<R0, R1>where
R0: UnwindSafe,
R1: UnwindSafe,
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
.