pub enum Word {
Formative(ShortcutCheckedFormative),
Referential(GeneralReferential),
Affixual(AffixualAdjunct),
Modular(ModularAdjunct),
MCS(MCSAdjunct),
Parsing(ParsingAdjunct),
Register(RegisterAdjunct),
Suppletive(SuppletiveAdjunct),
Bias(BiasAdjunct),
Numeric(NumericAdjunct),
}Expand description
A general word.
Variants§
Formative(ShortcutCheckedFormative)
A formative.
Referential(GeneralReferential)
A referential.
Affixual(AffixualAdjunct)
A affixual adjunct.
Modular(ModularAdjunct)
A modular adjunct.
MCS(MCSAdjunct)
A mcs adjunct.
Parsing(ParsingAdjunct)
A parsing adjunct.
Register(RegisterAdjunct)
A register adjunct.
Suppletive(SuppletiveAdjunct)
A suppletive adjunct.
Bias(BiasAdjunct)
A bias adjunct.
Numeric(NumericAdjunct)
A numeric adjunct.
Trait Implementations§
Source§impl FromTokens for Word
impl FromTokens for Word
Source§fn parse_volatile(
stream: &mut TokenStream<'_>,
flags: FromTokenFlags,
) -> Result<Self, ParseError>
fn parse_volatile( stream: &mut TokenStream<'_>, flags: FromTokenFlags, ) -> Result<Self, ParseError>
Source§fn parse(
stream: &mut TokenStream<'_>,
flags: FromTokenFlags,
) -> Result<Self, ParseError>
fn parse( stream: &mut TokenStream<'_>, flags: FromTokenFlags, ) -> Result<Self, ParseError>
Source§fn parse_str(source: &str, flags: FromTokenFlags) -> Result<Self, ParseError>
fn parse_str(source: &str, flags: FromTokenFlags) -> Result<Self, ParseError>
Parses this item from a string.
Source§impl IntoTokens for Word
impl IntoTokens for Word
Source§fn append_tokens_to(&self, list: &mut TokenList, flags: IntoTokensFlags)
fn append_tokens_to(&self, list: &mut TokenList, flags: IntoTokensFlags)
Appends
self as a list of tokens into the passed TokenList.Source§fn into_tokens(&self, flags: IntoTokensFlags) -> TokenList
fn into_tokens(&self, flags: IntoTokensFlags) -> TokenList
Creates a new
TokenList from the tokens this item represents.Source§fn to_string_with(&self, flags: IntoTokensFlags) -> String
fn to_string_with(&self, flags: IntoTokensFlags) -> String
Creates a new string from the tokens this item represents.
Source§impl Ord for Word
impl Ord for Word
Source§impl PartialOrd for Word
impl PartialOrd for Word
impl Eq for Word
impl StructuralPartialEq for Word
Auto Trait Implementations§
impl Freeze for Word
impl RefUnwindSafe for Word
impl Send for Word
impl Sync for Word
impl Unpin for Word
impl UnwindSafe for Word
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