pub struct ContractObligationMatrix {
pub stem: String,
pub obligations: Vec<ObligationStatus>,
}Expand description
Per-contract obligation verification matrix.
Fields§
§stem: StringContract file stem (e.g. “softmax-kernel-v1”)
obligations: Vec<ObligationStatus>Per-obligation verification status entries
Trait Implementations§
Source§impl Clone for ContractObligationMatrix
impl Clone for ContractObligationMatrix
Source§fn clone(&self) -> ContractObligationMatrix
fn clone(&self) -> ContractObligationMatrix
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 ContractObligationMatrix
impl Debug for ContractObligationMatrix
Source§impl<'de> Deserialize<'de> for ContractObligationMatrix
impl<'de> Deserialize<'de> for ContractObligationMatrix
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
Auto Trait Implementations§
impl Freeze for ContractObligationMatrix
impl RefUnwindSafe for ContractObligationMatrix
impl Send for ContractObligationMatrix
impl Sync for ContractObligationMatrix
impl Unpin for ContractObligationMatrix
impl UnsafeUnpin for ContractObligationMatrix
impl UnwindSafe for ContractObligationMatrix
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