pub struct Decoded<A: Arc> {
pub labels: Vec<A::Label>,
pub weight: A::Weight,
}Expand description
The best path through the graph, given the acoustic scores.
Fields§
§labels: Vec<A::Label>The output labels along the path, epsilons removed.
weight: A::WeightThe path’s weight: the graph’s costs, the acoustic scores and the final weight, all multiplied together.
Trait Implementations§
impl<A: PartialEq + Arc> StructuralPartialEq for Decoded<A>
Auto Trait Implementations§
impl<A> Freeze for Decoded<A>
impl<A> RefUnwindSafe for Decoded<A>
impl<A> Send for Decoded<A>
impl<A> Sync for Decoded<A>
impl<A> Unpin for Decoded<A>
impl<A> UnsafeUnpin for Decoded<A>
impl<A> UnwindSafe for Decoded<A>
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