pub struct RefreshTokenId(/* private fields */);Trait Implementations§
Source§impl Clone for RefreshTokenId
impl Clone for RefreshTokenId
Source§fn clone(&self) -> RefreshTokenId
fn clone(&self) -> RefreshTokenId
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 Debug for RefreshTokenId
impl Debug for RefreshTokenId
Source§impl<'r, DB: Database> Decode<'r, DB> for RefreshTokenId
impl<'r, DB: Database> Decode<'r, DB> for RefreshTokenId
Source§impl<'q, DB: Database> Encode<'q, DB> for RefreshTokenId
impl<'q, DB: Database> Encode<'q, DB> for RefreshTokenId
Source§impl From<RefreshTokenId> for Uuid
impl From<RefreshTokenId> for Uuid
Source§fn from(value: RefreshTokenId) -> Self
fn from(value: RefreshTokenId) -> Self
Converts to this type from the input type.
Source§impl From<Uuid> for RefreshTokenId
impl From<Uuid> for RefreshTokenId
Source§impl PartialEq for RefreshTokenId
impl PartialEq for RefreshTokenId
Source§impl PgHasArrayType for RefreshTokenIdwhere
Uuid: PgHasArrayType,
impl PgHasArrayType for RefreshTokenIdwhere
Uuid: PgHasArrayType,
fn array_type_info() -> PgTypeInfo
fn array_compatible(ty: &PgTypeInfo) -> bool
Source§impl<DB: Database> Type<DB> for RefreshTokenId
impl<DB: Database> Type<DB> for RefreshTokenId
impl Copy for RefreshTokenId
impl StructuralPartialEq for RefreshTokenId
Auto Trait Implementations§
impl Freeze for RefreshTokenId
impl RefUnwindSafe for RefreshTokenId
impl Send for RefreshTokenId
impl Sync for RefreshTokenId
impl Unpin for RefreshTokenId
impl UnwindSafe for RefreshTokenId
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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