pub struct GateEvaluation {
pub base: BaseEvaluation,
pub id_type: Option<InternedString>,
pub value: bool,
}
Fields§
§base: BaseEvaluation
§id_type: Option<InternedString>
§value: bool
Trait Implementations§
Source§impl Clone for GateEvaluation
impl Clone for GateEvaluation
Source§fn clone(&self) -> GateEvaluation
fn clone(&self) -> GateEvaluation
Returns a duplicate 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<'de> Deserialize<'de> for GateEvaluation
impl<'de> Deserialize<'de> for GateEvaluation
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<'a> From<&'a GateEvaluation> for AnyEvaluation<'a>
impl<'a> From<&'a GateEvaluation> for AnyEvaluation<'a>
Source§fn from(gate_eval: &'a GateEvaluation) -> Self
fn from(gate_eval: &'a GateEvaluation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GateEvaluation
impl RefUnwindSafe for GateEvaluation
impl Send for GateEvaluation
impl Sync for GateEvaluation
impl Unpin for GateEvaluation
impl UnwindSafe for GateEvaluation
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