pub struct GuardianHandle(pub(crate) u32, pub(crate) u32);Expand description
Stable handle for one temporary guardian instance during an iteration.
Tuple Fields§
§0: u32§1: u32Implementations§
Trait Implementations§
Source§impl Clone for GuardianHandle
impl Clone for GuardianHandle
Source§fn clone(&self) -> GuardianHandle
fn clone(&self) -> GuardianHandle
Returns a duplicate 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 Debug for GuardianHandle
impl Debug for GuardianHandle
Source§impl Hash for GuardianHandle
impl Hash for GuardianHandle
Source§impl PartialEq for GuardianHandle
impl PartialEq for GuardianHandle
impl Copy for GuardianHandle
impl Eq for GuardianHandle
impl StructuralPartialEq for GuardianHandle
Auto Trait Implementations§
impl Freeze for GuardianHandle
impl RefUnwindSafe for GuardianHandle
impl Send for GuardianHandle
impl Sync for GuardianHandle
impl Unpin for GuardianHandle
impl UnsafeUnpin for GuardianHandle
impl UnwindSafe for GuardianHandle
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more