[−][src]Struct tantivy_fst::raw::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 Clone for Output
[src]
impl Copy for Output
[src]
impl Debug for Output
[src]
impl Eq for Output
[src]
impl Hash for Output
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for Output
[src]
fn cmp(&self, other: &Output) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<Output> for Output
[src]
impl PartialOrd<Output> for Output
[src]
fn partial_cmp(&self, other: &Output) -> Option<Ordering>
[src]
fn lt(&self, other: &Output) -> bool
[src]
fn le(&self, other: &Output) -> bool
[src]
fn gt(&self, other: &Output) -> bool
[src]
fn ge(&self, other: &Output) -> bool
[src]
impl StructuralEq for Output
[src]
impl StructuralPartialEq for Output
[src]
Auto Trait Implementations
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnwindSafe for Output
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,