pub struct SignResult {
pub signature: SecretBox<Base64Bytes>,
}Expand description
Result of the sign method.
Fields§
§signature: SecretBox<Base64Bytes>The signature bytes. Base64-encoded on the wire.
Trait Implementations§
Source§impl Debug for SignResult
impl Debug for SignResult
Source§impl<'de> Deserialize<'de> for SignResult
impl<'de> Deserialize<'de> for SignResult
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
Auto Trait Implementations§
impl Freeze for SignResult
impl RefUnwindSafe for SignResult
impl Send for SignResult
impl Sync for SignResult
impl Unpin for SignResult
impl UnsafeUnpin for SignResult
impl UnwindSafe for SignResult
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