pub enum DetachTokenResolution<'a, EF, V, LF> {
NoExactMatch,
Exact(ResolvedIdentity<'a, EF, V, LF>),
}Expand description
Exact-token resolution state for the identity-slot detach cell.
Variants§
NoExactMatch
The presented token does not equal the stored cell token.
Exact(ResolvedIdentity<'a, EF, V, LF>)
The exact token index resolved its owning identity.
Trait Implementations§
Source§impl<EF, V, LF> Clone for DetachTokenResolution<'_, EF, V, LF>
impl<EF, V, LF> Clone for DetachTokenResolution<'_, EF, V, LF>
impl<EF, V, LF> Copy for DetachTokenResolution<'_, EF, V, LF>
Auto Trait Implementations§
impl<'a, EF, V, LF> Freeze for DetachTokenResolution<'a, EF, V, LF>
impl<'a, EF, V, LF> RefUnwindSafe for DetachTokenResolution<'a, EF, V, LF>
impl<'a, EF, V, LF> Send for DetachTokenResolution<'a, EF, V, LF>
impl<'a, EF, V, LF> Sync for DetachTokenResolution<'a, EF, V, LF>
impl<'a, EF, V, LF> Unpin for DetachTokenResolution<'a, EF, V, LF>
impl<'a, EF, V, LF> UnsafeUnpin for DetachTokenResolution<'a, EF, V, LF>
impl<'a, EF, V, LF> UnwindSafe for DetachTokenResolution<'a, EF, V, LF>
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