#[repr(transparent)]pub struct ContactRequestId(pub i64);Tuple Fields§
§0: i64Trait Implementations§
Source§impl Clone for ContactRequestId
impl Clone for ContactRequestId
Source§fn clone(&self) -> ContactRequestId
fn clone(&self) -> ContactRequestId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContactRequestId
impl Debug for ContactRequestId
Source§impl Display for ContactRequestId
impl Display for ContactRequestId
Source§impl<'a> From<&'a UserContactRequest> for ContactRequestId
impl<'a> From<&'a UserContactRequest> for ContactRequestId
Source§fn from(req: &'a UserContactRequest) -> Self
fn from(req: &'a UserContactRequest) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a mut UserContactRequest> for ContactRequestId
impl<'a> From<&'a mut UserContactRequest> for ContactRequestId
Source§fn from(req: &'a mut UserContactRequest) -> Self
fn from(req: &'a mut UserContactRequest) -> Self
Converts to this type from the input type.
Source§impl From<UserContactRequest> for ContactRequestId
impl From<UserContactRequest> for ContactRequestId
Source§fn from(req: UserContactRequest) -> Self
fn from(req: UserContactRequest) -> Self
Converts to this type from the input type.
Source§impl FromStr for ContactRequestId
impl FromStr for ContactRequestId
Source§impl Hash for ContactRequestId
impl Hash for ContactRequestId
Source§impl Ord for ContactRequestId
impl Ord for ContactRequestId
Source§fn cmp(&self, other: &ContactRequestId) -> Ordering
fn cmp(&self, other: &ContactRequestId) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ContactRequestId
impl PartialEq for ContactRequestId
Source§fn eq(&self, other: &ContactRequestId) -> bool
fn eq(&self, other: &ContactRequestId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ContactRequestId
impl PartialOrd for ContactRequestId
impl Copy for ContactRequestId
impl Eq for ContactRequestId
impl StructuralPartialEq for ContactRequestId
Auto Trait Implementations§
impl Freeze for ContactRequestId
impl RefUnwindSafe for ContactRequestId
impl Send for ContactRequestId
impl Sync for ContactRequestId
impl Unpin for ContactRequestId
impl UnsafeUnpin for ContactRequestId
impl UnwindSafe for ContactRequestId
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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