pub struct NormalizedTermValue(/* private fields */);Expand description
The value of a normalized term
This is a string that has been normalized to lowercase and trimmed.
Implementations§
Trait Implementations§
Source§impl AsRef<[u8]> for NormalizedTermValue
impl AsRef<[u8]> for NormalizedTermValue
Source§impl Clone for NormalizedTermValue
impl Clone for NormalizedTermValue
Source§fn clone(&self) -> NormalizedTermValue
fn clone(&self) -> NormalizedTermValue
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 NormalizedTermValue
impl Debug for NormalizedTermValue
Source§impl Default for NormalizedTermValue
impl Default for NormalizedTermValue
Source§fn default() -> NormalizedTermValue
fn default() -> NormalizedTermValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NormalizedTermValue
impl<'de> Deserialize<'de> for NormalizedTermValue
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 NormalizedTermValue
impl Display for NormalizedTermValue
Source§impl From<&str> for NormalizedTermValue
impl From<&str> for NormalizedTermValue
Source§impl From<String> for NormalizedTermValue
impl From<String> for NormalizedTermValue
Source§impl Hash for NormalizedTermValue
impl Hash for NormalizedTermValue
Source§impl Ord for NormalizedTermValue
impl Ord for NormalizedTermValue
Source§fn cmp(&self, other: &NormalizedTermValue) -> Ordering
fn cmp(&self, other: &NormalizedTermValue) -> 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 NormalizedTermValue
impl PartialEq for NormalizedTermValue
Source§impl PartialOrd for NormalizedTermValue
impl PartialOrd for NormalizedTermValue
Source§impl Serialize for NormalizedTermValue
impl Serialize for NormalizedTermValue
impl Eq for NormalizedTermValue
impl StructuralPartialEq for NormalizedTermValue
Auto Trait Implementations§
impl Freeze for NormalizedTermValue
impl RefUnwindSafe for NormalizedTermValue
impl Send for NormalizedTermValue
impl Sync for NormalizedTermValue
impl Unpin for NormalizedTermValue
impl UnwindSafe for NormalizedTermValue
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