pub struct RecordHint(/* private fields */);Expand description
a record hint. Used as a hint to what this data is used for.
Implementations§
Trait Implementations§
Source§impl AsRef<[u8]> for RecordHint
impl AsRef<[u8]> for RecordHint
Source§impl Clone for RecordHint
impl Clone for RecordHint
Source§fn clone(&self) -> RecordHint
fn clone(&self) -> RecordHint
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 RecordHint
impl Debug for RecordHint
Source§impl<'de> Deserialize<'de> for RecordHint
impl<'de> Deserialize<'de> for RecordHint
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 Hash for RecordHint
impl Hash for RecordHint
Source§impl Ord for RecordHint
impl Ord for RecordHint
Source§fn cmp(&self, other: &RecordHint) -> Ordering
fn cmp(&self, other: &RecordHint) -> 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 RecordHint
impl PartialEq for RecordHint
Source§impl PartialOrd for RecordHint
impl PartialOrd for RecordHint
Source§impl Serialize for RecordHint
impl Serialize for RecordHint
impl Copy for RecordHint
impl Eq for RecordHint
impl StructuralPartialEq for RecordHint
Auto Trait Implementations§
impl Freeze for RecordHint
impl RefUnwindSafe for RecordHint
impl Send for RecordHint
impl Sync for RecordHint
impl Unpin for RecordHint
impl UnwindSafe for RecordHint
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<T> ToHex for T
impl<T> ToHex for T
Source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Lower case
letters are used (e.g. f9b4ca)Source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Upper case
letters are used (e.g. F9B4CA)