pub struct NegativeBoundaryVector {
pub id: String,
pub category: String,
pub trigger: String,
pub expected_verdict: NegativeBoundaryVectorExpectedVerdict,
pub expected_reason_code: String,
pub must_emit_receipt: bool,
pub must_not_dispatch: bool,
pub must_bind_evidence: Option<Vec<String>>,
}Fields§
§id: String§category: String§trigger: String§expected_verdict: NegativeBoundaryVectorExpectedVerdict§expected_reason_code: String§must_emit_receipt: bool§must_not_dispatch: bool§must_bind_evidence: Option<Vec<String>>Implementations§
Source§impl NegativeBoundaryVector
impl NegativeBoundaryVector
pub fn new( id: String, category: String, trigger: String, expected_verdict: NegativeBoundaryVectorExpectedVerdict, expected_reason_code: String, must_emit_receipt: bool, must_not_dispatch: bool, ) -> NegativeBoundaryVector
Trait Implementations§
Source§impl Clone for NegativeBoundaryVector
impl Clone for NegativeBoundaryVector
Source§fn clone(&self) -> NegativeBoundaryVector
fn clone(&self) -> NegativeBoundaryVector
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NegativeBoundaryVector
impl Debug for NegativeBoundaryVector
Source§impl Default for NegativeBoundaryVector
impl Default for NegativeBoundaryVector
Source§fn default() -> NegativeBoundaryVector
fn default() -> NegativeBoundaryVector
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NegativeBoundaryVector
impl<'de> Deserialize<'de> for NegativeBoundaryVector
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 NegativeBoundaryVector
impl PartialEq for NegativeBoundaryVector
Source§fn eq(&self, other: &NegativeBoundaryVector) -> bool
fn eq(&self, other: &NegativeBoundaryVector) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NegativeBoundaryVector
impl Serialize for NegativeBoundaryVector
impl StructuralPartialEq for NegativeBoundaryVector
Auto Trait Implementations§
impl Freeze for NegativeBoundaryVector
impl RefUnwindSafe for NegativeBoundaryVector
impl Send for NegativeBoundaryVector
impl Sync for NegativeBoundaryVector
impl Unpin for NegativeBoundaryVector
impl UnsafeUnpin for NegativeBoundaryVector
impl UnwindSafe for NegativeBoundaryVector
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