pub struct NilString<T>(pub Option<T>);Expand description
Optional field, which encodes None as empty string (0x80).
T must never be encodable to 0x80 since it will resolve to None.
Tuple Fields§
§0: Option<T>Trait Implementations§
impl<T: Eq> Eq for NilString<T>
impl<T> StructuralPartialEq for NilString<T>
Auto Trait Implementations§
impl<T> Freeze for NilString<T>where
T: Freeze,
impl<T> RefUnwindSafe for NilString<T>where
T: RefUnwindSafe,
impl<T> Send for NilString<T>where
T: Send,
impl<T> Sync for NilString<T>where
T: Sync,
impl<T> Unpin for NilString<T>where
T: Unpin,
impl<T> UnwindSafe for NilString<T>where
T: UnwindSafe,
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more