Struct rustfst::semirings::StringWeightRight
source · pub struct StringWeightRight { /* private fields */ }Expand description
String semiring: (longest_common_suffix, ., Infinity, Epsilon)
Implementations§
Trait Implementations§
source§impl AsRef<StringWeightRight> for StringWeightRight
impl AsRef<StringWeightRight> for StringWeightRight
source§fn as_ref(&self) -> &StringWeightRight
fn as_ref(&self) -> &StringWeightRight
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for StringWeightRight
impl Clone for StringWeightRight
source§fn clone(&self) -> StringWeightRight
fn clone(&self) -> StringWeightRight
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StringWeightRight
impl Debug for StringWeightRight
source§impl Display for StringWeightRight
impl Display for StringWeightRight
source§impl From<u32> for StringWeightRight
impl From<u32> for StringWeightRight
source§impl Hash for StringWeightRight
impl Hash for StringWeightRight
source§impl PartialEq for StringWeightRight
impl PartialEq for StringWeightRight
source§fn eq(&self, other: &StringWeightRight) -> bool
fn eq(&self, other: &StringWeightRight) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for StringWeightRight
impl PartialOrd for StringWeightRight
source§fn partial_cmp(&self, other: &StringWeightRight) -> Option<Ordering>
fn partial_cmp(&self, other: &StringWeightRight) -> Option<Ordering>
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 moresource§impl ReverseBack<StringWeightRight> for <StringWeightRight as Semiring>::ReverseWeight
impl ReverseBack<StringWeightRight> for <StringWeightRight as Semiring>::ReverseWeight
fn reverse_back(&self) -> Result<StringWeightRight>
source§impl Semiring for StringWeightRight
impl Semiring for StringWeightRight
type Type = StringWeightVariant
type ReverseWeight = StringWeightLeft
fn zero() -> Self
fn one() -> Self
fn new(value: <Self as Semiring>::Type) -> Self
fn plus_assign<P: Borrow<Self>>(&mut self, rhs: P) -> Result<()>
fn times_assign<P: Borrow<Self>>(&mut self, rhs: P) -> Result<()>
fn approx_equal<P: Borrow<Self>>(&self, rhs: P, _delta: f32) -> bool
source§fn take_value(self) -> <Self as Semiring>::Type
fn take_value(self) -> <Self as Semiring>::Type
Move underneath value.
fn set_value(&mut self, value: <Self as Semiring>::Type)
fn reverse(&self) -> Result<Self::ReverseWeight>
fn properties() -> SemiringProperties
fn plus<P: Borrow<Self>>(&self, rhs: P) -> Result<Self>
fn times<P: Borrow<Self>>(&self, rhs: P) -> Result<Self>
fn is_one(&self) -> bool
fn is_zero(&self) -> bool
source§impl WeaklyDivisibleSemiring for StringWeightRight
impl WeaklyDivisibleSemiring for StringWeightRight
fn divide_assign(&mut self, rhs: &Self, divide_type: DivideType) -> Result<()>
fn divide(&self, rhs: &Self, divide_type: DivideType) -> Result<Self>
source§impl WeightQuantize for StringWeightRight
impl WeightQuantize for StringWeightRight
impl Eq for StringWeightRight
impl StructuralPartialEq for StringWeightRight
Auto Trait Implementations§
impl Freeze for StringWeightRight
impl RefUnwindSafe for StringWeightRight
impl Send for StringWeightRight
impl Sync for StringWeightRight
impl Unpin for StringWeightRight
impl UnwindSafe for StringWeightRight
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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