pub struct Notarization {
pub payload: Option<NotarizationPayload>,
pub signature: Option<Signature>,
}Fields§
§payload: Option<NotarizationPayload>§signature: Option<Signature>Notarizer signature over hash(payload)
Trait Implementations§
Source§impl Clone for Notarization
impl Clone for Notarization
Source§fn clone(&self) -> Notarization
fn clone(&self) -> Notarization
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 Notarization
impl Debug for Notarization
Source§impl<'de> Deserialize<'de> for Notarization
impl<'de> Deserialize<'de> for Notarization
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 Notarization
impl PartialEq for Notarization
Source§impl Serialize for Notarization
impl Serialize for Notarization
impl StructuralPartialEq for Notarization
Auto Trait Implementations§
impl Freeze for Notarization
impl RefUnwindSafe for Notarization
impl Send for Notarization
impl Sync for Notarization
impl Unpin for Notarization
impl UnsafeUnpin for Notarization
impl UnwindSafe for Notarization
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