pub struct SocProof {
pub chunk_addr: String,
pub identifier: String,
pub signature: String,
pub signer: String,
}Expand description
Single-owner-chunk proof embedded in a ChunkInclusionProof.
Fields§
§chunk_addr: StringAddress of the SOC chunk.
identifier: StringSOC identifier.
signature: StringSOC signature (hex).
signer: StringSOC signer (Ethereum address, hex).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SocProof
impl<'de> Deserialize<'de> for SocProof
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 StructuralPartialEq for SocProof
Auto Trait Implementations§
impl Freeze for SocProof
impl RefUnwindSafe for SocProof
impl Send for SocProof
impl Sync for SocProof
impl Unpin for SocProof
impl UnsafeUnpin for SocProof
impl UnwindSafe for SocProof
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