pub enum ExecutedState {
Par(ParResult),
Call(CallResult),
Fold(FoldResult),
Ap(ApResult),
Canon(CanonResult),
}
Variants§
Implementations§
Trait Implementations§
source§impl Clone for ExecutedState
impl Clone for ExecutedState
source§fn clone(&self) -> ExecutedState
fn clone(&self) -> ExecutedState
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 ExecutedState
impl Debug for ExecutedState
source§impl<'de> Deserialize<'de> for ExecutedState
impl<'de> Deserialize<'de> for ExecutedState
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for ExecutedState
impl Display for ExecutedState
source§impl PartialEq<ExecutedState> for ExecutedState
impl PartialEq<ExecutedState> for ExecutedState
source§fn eq(&self, other: &ExecutedState) -> bool
fn eq(&self, other: &ExecutedState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.