Struct abstract_std::objects::pool::unique_pool_id::UniquePoolId
source · pub struct UniquePoolId(/* private fields */);Implementations§
Trait Implementations§
source§impl Clone for UniquePoolId
impl Clone for UniquePoolId
source§fn clone(&self) -> UniquePoolId
fn clone(&self) -> UniquePoolId
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 UniquePoolId
impl Debug for UniquePoolId
source§impl<'de> Deserialize<'de> for UniquePoolId
impl<'de> Deserialize<'de> for UniquePoolId
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for UniquePoolId
impl Display for UniquePoolId
source§impl From<u64> for UniquePoolId
impl From<u64> for UniquePoolId
source§impl Hash for UniquePoolId
impl Hash for UniquePoolId
source§impl IntKey for UniquePoolId
impl IntKey for UniquePoolId
source§impl JsonSchema for UniquePoolId
impl JsonSchema for UniquePoolId
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresource§impl KeyDeserialize for UniquePoolId
impl KeyDeserialize for UniquePoolId
source§impl Ord for UniquePoolId
impl Ord for UniquePoolId
source§fn cmp(&self, other: &UniquePoolId) -> Ordering
fn cmp(&self, other: &UniquePoolId) -> 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 UniquePoolId
impl PartialEq for UniquePoolId
source§fn eq(&self, other: &UniquePoolId) -> bool
fn eq(&self, other: &UniquePoolId) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for UniquePoolId
impl PartialOrd for UniquePoolId
source§fn partial_cmp(&self, other: &UniquePoolId) -> Option<Ordering>
fn partial_cmp(&self, other: &UniquePoolId) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl<'a> Prefixer<'a> for UniquePoolId
impl<'a> Prefixer<'a> for UniquePoolId
source§impl<'a> PrimaryKey<'a> for UniquePoolId
impl<'a> PrimaryKey<'a> for UniquePoolId
§type Prefix = ()
type Prefix = ()
These associated types need to implement
Prefixer, so that they can be useful arguments
for prefix(), sub_prefix(), and their key-deserializable variants.type SubPrefix = ()
§type Suffix = UniquePoolId
type Suffix = UniquePoolId
These associated types need to implement
KeyDeserialize, so that they can be returned from
range_de() and friends.type SuperSuffix = UniquePoolId
fn joined_key(&self) -> Vec<u8>
fn joined_extra_key(&self, key: &[u8]) -> Vec<u8>
source§impl Serialize for UniquePoolId
impl Serialize for UniquePoolId
impl Copy for UniquePoolId
impl Eq for UniquePoolId
impl StructuralPartialEq for UniquePoolId
Auto Trait Implementations§
impl Freeze for UniquePoolId
impl RefUnwindSafe for UniquePoolId
impl Send for UniquePoolId
impl Sync for UniquePoolId
impl Unpin for UniquePoolId
impl UnwindSafe for UniquePoolId
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> CallHasher for T
impl<T> CallHasher for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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