Struct rustfst::fst_impls::ConstFst

source ·
pub struct ConstFst<W> { /* private fields */ }
Expand description

Immutable FST whose states and trs each implemented by single arrays,

Trait Implementations§

source§

impl<W: Clone> Clone for ConstFst<W>

source§

fn clone(&self) -> ConstFst<W>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<W: Semiring> CoreFst<W> for ConstFst<W>

§

type TRS = TrsConst<W>

Weight use in the wFST. This type must implement the Semiring trait.
source§

fn start(&self) -> Option<StateId>

Returns the ID of the start state of the wFST if it exists else none. Read more
source§

fn final_weight(&self, state_id: StateId) -> Result<Option<W>>

Retrieves the final weight of a state (if the state is a final one). Read more
source§

unsafe fn final_weight_unchecked(&self, state_id: StateId) -> Option<W>

Retrieves the final weight of a state (if the state is a final one). Read more
source§

fn num_trs(&self, s: StateId) -> Result<usize>

Number of trs leaving a specific state in the wFST. Read more
source§

unsafe fn num_trs_unchecked(&self, s: StateId) -> usize

Number of trs leaving a specific state in the wFST. Read more
source§

fn get_trs(&self, state_id: StateId) -> Result<Self::TRS>

Get an iterator on the transitions leaving state state.
source§

unsafe fn get_trs_unchecked(&self, state_id: StateId) -> Self::TRS

Get an iterator on the transitions leaving state state. Read more
source§

fn properties(&self) -> FstProperties

Retrieve the FstProperties stored in the Fst. As a result, all the properties returned are verified by the Fst but some other properties might be true as well despite the flag not being set.
source§

fn num_input_epsilons(&self, state: StateId) -> Result<usize>

Returns the number of trs with epsilon input labels leaving a state. Read more
source§

fn num_output_epsilons(&self, state: StateId) -> Result<usize>

Returns the number of trs with epsilon output labels leaving a state. Read more
source§

fn is_final(&self, state_id: StateId) -> Result<bool>

Returns whether or not the state with identifier passed as parameters is a final state. Read more
source§

unsafe fn is_final_unchecked(&self, state: StateId) -> bool

Returns whether or not the state with identifier passed as parameters is a final state. Read more
source§

fn is_start(&self, state_id: StateId) -> bool

Check whether a state is the start state or not.
source§

fn properties_with_mask(&self, mask: FstProperties) -> FstProperties

Apply a mask to the FstProperties returned.
source§

fn properties_check(&self, props_known: FstProperties) -> Result<FstProperties>

Retrieve the FstProperties in the Fst and check that all the properties in props_known are known (not the same as true). If not an error is returned. Read more
source§

impl<W: Debug> Debug for ConstFst<W>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<W: 'static + SerializableSemiring> Display for ConstFst<W>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<W: 'static + Semiring> ExpandedFst<W> for ConstFst<W>

source§

fn num_states(&self) -> usize

Returns the number of states that contains the FST. They are all counted even if some states are not on a successful path (doesn’t perform triming). Read more
source§

fn states_range(&self) -> Range<StateId>

source§

fn approx_equal<F2: ExpandedFst<W>>(&self, fst2: &F2, delta: f32) -> bool

source§

impl<W: Semiring> From<VectorFst<W>> for ConstFst<W>

source§

fn from(ifst: VectorFst<W>) -> Self

Converts to this type from the input type.
source§

impl<W: Semiring> Fst<W> for ConstFst<W>

source§

fn input_symbols(&self) -> Option<&Arc<SymbolTable>>

Retrieves the input SymbolTable associated to the Fst. If no SymbolTable has been previously attached then None is returned.
source§

fn output_symbols(&self) -> Option<&Arc<SymbolTable>>

Retrieves the output SymbolTable associated to the Fst. If no SymbolTable has been previously attached then None is returned.
source§

fn set_input_symbols(&mut self, symt: Arc<SymbolTable>)

Attaches an output SymbolTable to the Fst. The SymbolTable is not duplicated with the use of Arc.
source§

fn set_output_symbols(&mut self, symt: Arc<SymbolTable>)

Attaches an output SymbolTable to the Fst. The SymbolTable is not duplicated with the use of Arc.
source§

fn take_input_symbols(&mut self) -> Option<Arc<SymbolTable>>

Removes the input symbol table from the Fst and retrieves it.
source§

fn take_output_symbols(&mut self) -> Option<Arc<SymbolTable>>

Removes the output symbol table from the Fst and retrieves it.
source§

fn final_states_iter(&self) -> FinalStatesIterator<'_, W, Self>
where Self: Sized,

Returns an Iterator on the final states along with their weight.
source§

fn paths_iter(&self) -> PathsIterator<'_, W, Self>
where Self: Sized,

Returns an Iterator on the paths accepted by the Fst. Read more
source§

fn string_paths_iter(&self) -> Result<StringPathsIterator<'_, W, Self>>
where Self: Sized,

Returns an Iterator on the paths accepted by the Fst. Plus, handles the SymbolTable allowing to retrieve the strings instead of only the sequence of labels. Read more
source§

impl<W> FstIntoIterator<W> for ConstFst<W>
where W: 'static + Semiring,

§

type TrsIter = IntoIter<Tr<W>>

§

type FstIter = Box<dyn Iterator<Item = FstIterData<W, <ConstFst<W> as FstIntoIterator<W>>::TrsIter>>>

source§

fn fst_into_iter(self) -> Self::FstIter

source§

impl<'a, W: Semiring + 'static> FstIterator<'a, W> for ConstFst<W>

§

type FstIter = Map<Enumerate<Zip<Iter<'a, ConstState<W>>, RepeatN<&'a Arc<Vec<Tr<W>>>>>>, Box<dyn FnMut((usize, (&'a ConstState<W>, &'a Arc<Vec<Tr<W>>>))) -> FstIterData<W, <ConstFst<W> as CoreFst<W>>::TRS>>>

source§

fn fst_iter(&'a self) -> Self::FstIter

source§

impl<W: Semiring> PartialEq for ConstFst<W>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<W: SerializableSemiring> SerializableFst<W> for ConstFst<W>

source§

fn fst_type() -> String

String identifying the type of the FST. Will be used when serialiing and deserializing an FST in binary format.
source§

fn load(data: &[u8]) -> Result<Self>

Loads an FST from the binary format data in a Read.
source§

fn store<O: Write>(&self, output: O) -> Result<()>

Store the FST in binary format to a Write.
source§

fn from_parsed_fst_text(parsed_fst_text: ParsedTextFst<W>) -> Result<Self>

Turns a generic wFST format into the one of the wFST.
source§

fn read<P: AsRef<Path>>(path_bin_fst: P) -> Result<Self>

Loads an FST from a file in binary format.
source§

fn write<P: AsRef<Path>>(&self, path_bin_fst: P) -> Result<()>

Writes the FST to a file in binary format.
source§

fn from_text_string(fst_string: &str) -> Result<Self>

Deserializes a wFST in text from a path and returns a loaded wFST.
source§

fn read_text<P: AsRef<Path>>(path_text_fst: P) -> Result<Self>

Deserializes a wFST in text from a path and returns a loaded wFST.
source§

fn write_text<P: AsRef<Path>>(&self, path_output: P) -> Result<()>

Serializes the FST as a text file in a format compatible with OpenFST.
source§

fn text(&self) -> Result<String>

Writes the text representation of the FST into a String.
source§

fn draw<P: AsRef<Path>>( &self, path_output: P, config: &DrawingConfig ) -> Result<()>

Serializes the FST as a DOT file compatible with GraphViz binaries.
source§

impl<'a, W> StateIterator<'a> for ConstFst<W>

§

type Iter = Range<u32>

Iterator used to iterate over the state_id of the states of an FST.
source§

fn states_iter(&'a self) -> Self::Iter

Creates an iterator over the state_id of the states of an FST. Read more

Auto Trait Implementations§

§

impl<W> Freeze for ConstFst<W>

§

impl<W> RefUnwindSafe for ConstFst<W>
where W: RefUnwindSafe,

§

impl<W> Send for ConstFst<W>
where W: Send + Sync,

§

impl<W> Sync for ConstFst<W>
where W: Sync + Send,

§

impl<W> Unpin for ConstFst<W>
where W: Unpin,

§

impl<W> UnwindSafe for ConstFst<W>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V