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§impl PartialOrd for IdentifiableData
impl PartialOrd for IdentifiableData
impl 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