Struct fst_no_std::raw::Output
source · pub struct Output(/* private fields */);Expand description
An output is a value that is associated with a key in a finite state transducer.
Note that outputs must satisfy an algebra. Namely, it must have an additive
identity and the following binary operations defined: prefix,
concatenation and subtraction. prefix and concatenation are
commutative while subtraction is not. subtraction is only defined on
pairs of operands where the first operand is greater than or equal to the
second operand.
Currently, output values must be u64. However, in theory, an output value
can be anything that satisfies the above algebra. Future versions of this
crate may make outputs generic on this algebra.
Implementations§
Trait Implementations§
source§impl Ord for Output
impl Ord for Output
source§impl PartialEq for Output
impl PartialEq for Output
source§impl PartialOrd for Output
impl PartialOrd for Output
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Output
impl Eq for Output
impl StructuralEq for Output
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnwindSafe for Output
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