pub struct SignedMessage {
pub content: Option<String>,
pub algorithm: Option<Algorithm>,
pub derivation_path: Option<Vec<f64>>,
pub signature: Option<SignedMessageSignature>,
pub public_key: Option<String>,
}
Expand description
SignedMessage : Signed Message Object (for RAW signing responses)
Fields§
§content: Option<String>
§algorithm: Option<Algorithm>
§derivation_path: Option<Vec<f64>>
§signature: Option<SignedMessageSignature>
§public_key: Option<String>
Implementations§
Source§impl SignedMessage
impl SignedMessage
Sourcepub fn new() -> SignedMessage
pub fn new() -> SignedMessage
Signed Message Object (for RAW signing responses)
Trait Implementations§
Source§impl Clone for SignedMessage
impl Clone for SignedMessage
Source§fn clone(&self) -> SignedMessage
fn clone(&self) -> SignedMessage
Returns a copy 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 SignedMessage
impl Debug for SignedMessage
Source§impl Default for SignedMessage
impl Default for SignedMessage
Source§fn default() -> SignedMessage
fn default() -> SignedMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignedMessage
impl<'de> Deserialize<'de> for SignedMessage
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 SignedMessage
impl PartialEq for SignedMessage
Source§impl Serialize for SignedMessage
impl Serialize for SignedMessage
impl StructuralPartialEq for SignedMessage
Auto Trait Implementations§
impl Freeze for SignedMessage
impl RefUnwindSafe for SignedMessage
impl Send for SignedMessage
impl Sync for SignedMessage
impl Unpin for SignedMessage
impl UnwindSafe for SignedMessage
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