pub enum UserTokenState {
UseCached,
NotFound,
Update(UserToken),
}
Variants§
UseCached
Indicate to the resolver that the cached UserToken should be used, if present.
NotFound
The requested entity is not found, or has been removed.
Update(UserToken)
Update the cache state with the data found in this UserToken.
Auto Trait Implementations§
impl Freeze for UserTokenState
impl RefUnwindSafe for UserTokenState
impl Send for UserTokenState
impl Sync for UserTokenState
impl Unpin for UserTokenState
impl UnwindSafe for UserTokenState
Blanket Implementations§
§impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
§impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
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