pub struct SignatureEntry {
pub payload: Option<String>,
pub protected: Option<String>,
pub signature: Option<String>,
pub extra: BTreeMap<String, Ipld>,
}Fields§
§payload: Option<String>§protected: Option<String>§signature: Option<String>§extra: BTreeMap<String, Ipld>Trait Implementations§
Source§impl Clone for SignatureEntry
impl Clone for SignatureEntry
Source§fn clone(&self) -> SignatureEntry
fn clone(&self) -> SignatureEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 SignatureEntry
impl Debug for SignatureEntry
Source§impl Default for SignatureEntry
impl Default for SignatureEntry
Source§fn default() -> SignatureEntry
fn default() -> SignatureEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignatureEntry
impl<'de> Deserialize<'de> for SignatureEntry
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
Source§impl PartialEq for SignatureEntry
impl PartialEq for SignatureEntry
Source§impl Serialize for SignatureEntry
impl Serialize for SignatureEntry
impl StructuralPartialEq for SignatureEntry
Auto Trait Implementations§
impl Freeze for SignatureEntry
impl RefUnwindSafe for SignatureEntry
impl Send for SignatureEntry
impl Sync for SignatureEntry
impl Unpin for SignatureEntry
impl UnwindSafe for SignatureEntry
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