pub struct SigningLedgerLatestProofV1 {
pub schema_version: String,
pub kind: String,
pub log_id: String,
pub subject_identity_sha256: String,
pub present: bool,
pub sequence: Option<u64>,
pub signing_preimage_sha256: Option<String>,
pub signature_envelope_sha256: Option<String>,
pub siblings: Vec<String>,
}Fields§
§schema_version: String§kind: String§log_id: String§subject_identity_sha256: String§present: bool§sequence: Option<u64>§signing_preimage_sha256: Option<String>§signature_envelope_sha256: Option<String>§siblings: Vec<String>Trait Implementations§
Source§impl Clone for SigningLedgerLatestProofV1
impl Clone for SigningLedgerLatestProofV1
Source§fn clone(&self) -> SigningLedgerLatestProofV1
fn clone(&self) -> SigningLedgerLatestProofV1
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 SigningLedgerLatestProofV1
impl Debug for SigningLedgerLatestProofV1
Source§impl<'de> Deserialize<'de> for SigningLedgerLatestProofV1
impl<'de> Deserialize<'de> for SigningLedgerLatestProofV1
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 SigningLedgerLatestProofV1
impl StructuralPartialEq for SigningLedgerLatestProofV1
Auto Trait Implementations§
impl Freeze for SigningLedgerLatestProofV1
impl RefUnwindSafe for SigningLedgerLatestProofV1
impl Send for SigningLedgerLatestProofV1
impl Sync for SigningLedgerLatestProofV1
impl Unpin for SigningLedgerLatestProofV1
impl UnsafeUnpin for SigningLedgerLatestProofV1
impl UnwindSafe for SigningLedgerLatestProofV1
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