pub struct CommitmentConsistencyReport {
pub left_chain_id: String,
pub right_chain_id: String,
pub same_capability_commitment: bool,
pub same_receipt_reference: bool,
pub same_operator_identity: bool,
pub same_amount: bool,
pub overall_consistent: bool,
}Fields§
§left_chain_id: String§right_chain_id: String§same_capability_commitment: bool§same_receipt_reference: bool§same_operator_identity: bool§same_amount: bool§overall_consistent: boolTrait Implementations§
Source§impl Clone for CommitmentConsistencyReport
impl Clone for CommitmentConsistencyReport
Source§fn clone(&self) -> CommitmentConsistencyReport
fn clone(&self) -> CommitmentConsistencyReport
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 CommitmentConsistencyReport
impl Debug for CommitmentConsistencyReport
Source§impl<'de> Deserialize<'de> for CommitmentConsistencyReport
impl<'de> Deserialize<'de> for CommitmentConsistencyReport
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
impl Eq for CommitmentConsistencyReport
impl StructuralPartialEq for CommitmentConsistencyReport
Auto Trait Implementations§
impl Freeze for CommitmentConsistencyReport
impl RefUnwindSafe for CommitmentConsistencyReport
impl Send for CommitmentConsistencyReport
impl Sync for CommitmentConsistencyReport
impl Unpin for CommitmentConsistencyReport
impl UnsafeUnpin for CommitmentConsistencyReport
impl UnwindSafe for CommitmentConsistencyReport
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