pub enum TextNormalizationProfile {
EthosCollapseWhitespaceV1,
}Expand description
Supported text normalization profiles.
Variants§
EthosCollapseWhitespaceV1
Collapse ASCII whitespace, matching the existing verifier normalization.
Trait Implementations§
Source§impl Clone for TextNormalizationProfile
impl Clone for TextNormalizationProfile
Source§fn clone(&self) -> TextNormalizationProfile
fn clone(&self) -> TextNormalizationProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TextNormalizationProfile
Source§impl Debug for TextNormalizationProfile
impl Debug for TextNormalizationProfile
Source§impl<'de> Deserialize<'de> for TextNormalizationProfile
impl<'de> Deserialize<'de> for TextNormalizationProfile
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
impl Eq for TextNormalizationProfile
Source§impl Hash for TextNormalizationProfile
impl Hash for TextNormalizationProfile
Source§impl PartialEq for TextNormalizationProfile
impl PartialEq for TextNormalizationProfile
Source§fn eq(&self, other: &TextNormalizationProfile) -> bool
fn eq(&self, other: &TextNormalizationProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TextNormalizationProfile
impl Serialize for TextNormalizationProfile
impl StructuralPartialEq for TextNormalizationProfile
Auto Trait Implementations§
impl Freeze for TextNormalizationProfile
impl RefUnwindSafe for TextNormalizationProfile
impl Send for TextNormalizationProfile
impl Sync for TextNormalizationProfile
impl Unpin for TextNormalizationProfile
impl UnsafeUnpin for TextNormalizationProfile
impl UnwindSafe for TextNormalizationProfile
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