Skip to main content

Transition

Trait Transition 

Source
pub trait Transition {
    type ReturnOperand<T>
       where T: ValueDomain,
             Self: Apply<TransitionOperation<T>>;

    // Required method
    fn transition<T>(&self) -> Self::ReturnOperand<T>
       where T: ValueDomain,
             Self: Apply<TransitionOperation<T>>;
}

Required Associated Types§

Required Methods§

Source

fn transition<T>(&self) -> Self::ReturnOperand<T>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§