pub enum Meaning {
Plain,
Delta,
Time,
}Variants§
Implementations§
source§impl Meaning
impl Meaning
pub fn combine( self, other: Meaning, plain: fn(_: Meaning) -> Result<Meaning, EngineError>, delta: fn(_: Meaning) -> Result<Meaning, EngineError>, time: fn(_: Meaning) -> Result<Meaning, EngineError> ) -> Result<Meaning, EngineError>
pub fn pdt(self) -> Result<Meaning, EngineError>
pub fn pdx(self) -> Result<Meaning, EngineError>
pub fn pxx(self) -> Result<Meaning, EngineError>
pub fn ddt(self) -> Result<Meaning, EngineError>
pub fn ddx(self) -> Result<Meaning, EngineError>
pub fn dxx(self) -> Result<Meaning, EngineError>
pub fn ttd(self) -> Result<Meaning, EngineError>
pub fn ttx(self) -> Result<Meaning, EngineError>
pub fn xxx(self) -> Result<Meaning, EngineError>
Trait Implementations§
source§impl PartialEq for Meaning
impl PartialEq for Meaning
impl Copy for Meaning
impl StructuralPartialEq for Meaning
Auto Trait Implementations§
impl Freeze for Meaning
impl RefUnwindSafe for Meaning
impl Send for Meaning
impl Sync for Meaning
impl Unpin for Meaning
impl UnwindSafe for Meaning
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