pub struct Output(u64);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.
Tuple Fields§
§0: u64Implementations§
Trait Implementations§
Source§impl Ord for Output
impl Ord for Output
Source§impl PartialOrd for Output
impl PartialOrd for Output
impl Copy for Output
impl Eq for Output
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl Freeze for Output
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