pub struct ExplainReceiptResult {
pub receipt_path: String,
pub valid: bool,
pub has_begin_marker: bool,
pub has_end_marker: bool,
pub has_digest: bool,
pub has_checkpoint: bool,
pub issues: Vec<String>,
pub law_status: String,
}Fields§
§receipt_path: String§valid: bool§has_begin_marker: bool§has_end_marker: bool§has_digest: bool§has_checkpoint: bool§issues: Vec<String>§law_status: StringTrait Implementations§
Source§impl Clone for ExplainReceiptResult
impl Clone for ExplainReceiptResult
Source§fn clone(&self) -> ExplainReceiptResult
fn clone(&self) -> ExplainReceiptResult
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 ExplainReceiptResult
impl Debug for ExplainReceiptResult
Source§impl<'de> Deserialize<'de> for ExplainReceiptResult
impl<'de> Deserialize<'de> for ExplainReceiptResult
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 ExplainReceiptResult
impl RefUnwindSafe for ExplainReceiptResult
impl Send for ExplainReceiptResult
impl Sync for ExplainReceiptResult
impl Unpin for ExplainReceiptResult
impl UnsafeUnpin for ExplainReceiptResult
impl UnwindSafe for ExplainReceiptResult
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