[][src]Struct fst::raw::Output

pub struct Output(_);

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.

Methods

impl Output[src]

pub fn new(v: u64) -> Output[src]

Create a new output from a u64.

pub fn zero() -> Output[src]

Create a zero output.

pub fn value(self) -> u64[src]

Retrieve the value inside this output.

pub fn is_zero(self) -> bool[src]

Returns true if this is a zero output.

pub fn prefix(self, o: Output) -> Output[src]

Returns the prefix of this output and o.

pub fn cat(self, o: Output) -> Output[src]

Returns the concatenation of this output and o.

pub fn sub(self, o: Output) -> Output[src]

Returns the subtraction of o from this output.

This function panics if self > o.

Trait Implementations

impl PartialEq<Output> for Output[src]

impl Clone for Output[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<Output> for Output[src]

impl Ord for Output[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Copy for Output[src]

impl Eq for Output[src]

impl Hash for Output[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Output[src]

Auto Trait Implementations

impl Sync for Output

impl Unpin for Output

impl Send for Output

impl UnwindSafe for Output

impl RefUnwindSafe for Output

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]