Struct scrambledb::data_types::IdentifiableData
source · pub struct IdentifiableData { /* private fields */ }
Expand description
An identifiable piece of data.
PartialOrd
derive:
When derived on structs, it will produce a lexicographic ordering based on
the top-to-bottom declaration order of the struct’s members.
Trait Implementations§
source§impl Clone for IdentifiableData
impl Clone for IdentifiableData
source§fn clone(&self) -> IdentifiableData
fn clone(&self) -> IdentifiableData
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 IdentifiableData
impl Debug for IdentifiableData
source§impl Ord for IdentifiableData
impl Ord for IdentifiableData
source§fn cmp(&self, other: &IdentifiableData) -> Ordering
fn cmp(&self, other: &IdentifiableData) -> 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 IdentifiableData
impl PartialEq for IdentifiableData
source§fn eq(&self, other: &IdentifiableData) -> bool
fn eq(&self, other: &IdentifiableData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for IdentifiableData
impl PartialOrd for IdentifiableData
source§fn partial_cmp(&self, other: &IdentifiableData) -> Option<Ordering>
fn partial_cmp(&self, other: &IdentifiableData) -> 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 moreimpl Eq for IdentifiableData
impl StructuralPartialEq for IdentifiableData
Auto Trait Implementations§
impl Freeze for IdentifiableData
impl RefUnwindSafe for IdentifiableData
impl Send for IdentifiableData
impl Sync for IdentifiableData
impl Unpin for IdentifiableData
impl UnwindSafe for IdentifiableData
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