pub struct UnicodeScripts;Implementations§
Trait Implementations§
Source§impl Clone for UnicodeScripts
impl Clone for UnicodeScripts
Source§fn clone(&self) -> UnicodeScripts
fn clone(&self) -> UnicodeScripts
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 UnicodeScripts
impl Debug for UnicodeScripts
Source§impl Default for UnicodeScripts
impl Default for UnicodeScripts
Source§impl<'de> Deserialize<'de> for UnicodeScripts
impl<'de> Deserialize<'de> for UnicodeScripts
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 From<UnicodeScripts> for PreTokenizerWrapper
impl From<UnicodeScripts> for PreTokenizerWrapper
Source§fn from(from: UnicodeScripts) -> Self
fn from(from: UnicodeScripts) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UnicodeScripts
impl PartialEq for UnicodeScripts
Source§impl PreTokenizer for UnicodeScripts
impl PreTokenizer for UnicodeScripts
fn pre_tokenize(&self, pretokenized: &mut PreTokenizedString) -> Result<()>
Source§impl Serialize for UnicodeScripts
impl Serialize for UnicodeScripts
impl Eq for UnicodeScripts
impl StructuralPartialEq for UnicodeScripts
Auto Trait Implementations§
impl Freeze for UnicodeScripts
impl RefUnwindSafe for UnicodeScripts
impl Send for UnicodeScripts
impl Sync for UnicodeScripts
impl Unpin for UnicodeScripts
impl UnwindSafe for UnicodeScripts
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more