pub struct MsgSignOutput {
pub timestamp: u64,
pub signature: String,
}Expand description
The result of constructing a message signature.
Fields§
§timestamp: u64Unix timestamp used in the signature.
signature: StringBase64url-encoded Ed25519 signature.
Trait Implementations§
Source§impl Clone for MsgSignOutput
impl Clone for MsgSignOutput
Source§fn clone(&self) -> MsgSignOutput
fn clone(&self) -> MsgSignOutput
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 moreAuto Trait Implementations§
impl Freeze for MsgSignOutput
impl RefUnwindSafe for MsgSignOutput
impl Send for MsgSignOutput
impl Sync for MsgSignOutput
impl Unpin for MsgSignOutput
impl UnsafeUnpin for MsgSignOutput
impl UnwindSafe for MsgSignOutput
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