pub struct AccountSetId(/* private fields */);Implementations§
Source§impl AccountSetId
impl AccountSetId
pub fn new() -> AccountSetId
Trait Implementations§
Source§impl Clone for AccountSetId
impl Clone for AccountSetId
Source§fn clone(&self) -> AccountSetId
fn clone(&self) -> AccountSetId
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 AccountSetId
impl Debug for AccountSetId
Source§impl<'r, DB> Decode<'r, DB> for AccountSetId
impl<'r, DB> Decode<'r, DB> for AccountSetId
Source§impl<'de> Deserialize<'de> for AccountSetId
impl<'de> Deserialize<'de> for AccountSetId
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AccountSetId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AccountSetId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AccountSetId
impl Display for AccountSetId
Source§impl<'q, DB> Encode<'q, DB> for AccountSetId
impl<'q, DB> Encode<'q, DB> for AccountSetId
Source§impl From<&AccountSetId> for AccountId
impl From<&AccountSetId> for AccountId
Source§fn from(id: &AccountSetId) -> AccountId
fn from(id: &AccountSetId) -> AccountId
Converts to this type from the input type.
Source§impl From<AccountSetId> for AccountId
impl From<AccountSetId> for AccountId
Source§fn from(id: AccountSetId) -> AccountId
fn from(id: AccountSetId) -> AccountId
Converts to this type from the input type.
Source§impl From<AccountSetId> for AccountSetMemberId
impl From<AccountSetId> for AccountSetMemberId
Source§fn from(id: AccountSetId) -> AccountSetMemberId
fn from(id: AccountSetId) -> AccountSetMemberId
Converts to this type from the input type.
Source§impl From<Uuid> for AccountSetId
impl From<Uuid> for AccountSetId
Source§fn from(uuid: Uuid) -> AccountSetId
fn from(uuid: Uuid) -> AccountSetId
Converts to this type from the input type.
Source§impl FromStr for AccountSetId
impl FromStr for AccountSetId
Source§impl Hash for AccountSetId
impl Hash for AccountSetId
Source§impl Ord for AccountSetId
impl Ord for AccountSetId
Source§fn cmp(&self, other: &AccountSetId) -> Ordering
fn cmp(&self, other: &AccountSetId) -> Ordering
1.21.0 · 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 AccountSetId
impl PartialEq for AccountSetId
Source§impl PartialOrd for AccountSetId
impl PartialOrd for AccountSetId
Source§impl PgHasArrayType for AccountSetIdwhere
Uuid: PgHasArrayType,
impl PgHasArrayType for AccountSetIdwhere
Uuid: PgHasArrayType,
fn array_type_info() -> PgTypeInfo
fn array_compatible(ty: &PgTypeInfo) -> bool
Source§impl Serialize for AccountSetId
impl Serialize for AccountSetId
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl<DB> Type<DB> for AccountSetId
impl<DB> Type<DB> for AccountSetId
impl Copy for AccountSetId
impl Eq for AccountSetId
impl StructuralPartialEq for AccountSetId
Auto Trait Implementations§
impl Freeze for AccountSetId
impl RefUnwindSafe for AccountSetId
impl Send for AccountSetId
impl Sync for AccountSetId
impl Unpin for AccountSetId
impl UnsafeUnpin for AccountSetId
impl UnwindSafe for AccountSetId
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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