pub struct GateParameter {
pub ref_type: String,
pub param_type: String,
pub gate_name: String,
pub pass_value: Value,
pub fail_value: Value,
}
Fields§
§ref_type: String
§param_type: String
§gate_name: String
§pass_value: Value
§fail_value: Value
Trait Implementations§
Source§impl Clone for GateParameter
impl Clone for GateParameter
Source§fn clone(&self) -> GateParameter
fn clone(&self) -> GateParameter
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 GateParameter
impl Debug for GateParameter
Source§impl<'de> Deserialize<'de> for GateParameter
impl<'de> Deserialize<'de> for GateParameter
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 PartialEq for GateParameter
impl PartialEq for GateParameter
Source§impl Serialize for GateParameter
impl Serialize for GateParameter
impl StructuralPartialEq for GateParameter
Auto Trait Implementations§
impl Freeze for GateParameter
impl RefUnwindSafe for GateParameter
impl Send for GateParameter
impl Sync for GateParameter
impl Unpin for GateParameter
impl UnwindSafe for GateParameter
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