Struct tantivy_fst::raw::Output
source · [−]pub struct Output(_);
Expand description
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.
Implementations
Trait Implementations
sourceimpl Hash for Output
impl Hash for Output
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [
Hasher
]. Read more1.3.0fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Feeds a slice of this type into the given [
Hasher
]. Read moresourceimpl Ord for Output
impl Ord for Output
sourceimpl PartialOrd<Output> for Output
impl PartialOrd<Output> for Output
impl Copy for Output
impl Eq for Output
impl StructuralEq for Output
impl StructuralPartialEq for Output
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more