pub struct SignedIntent {
pub intent: Intent,
pub pubkey: Vec<u8>,
pub signature: Vec<u8>,
}Expand description
A signed intent ready for submission to the node.
Fields§
§intent: Intent§pubkey: Vec<u8>§signature: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for SignedIntent
impl Clone for SignedIntent
Source§fn clone(&self) -> SignedIntent
fn clone(&self) -> SignedIntent
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 moreAuto Trait Implementations§
impl Freeze for SignedIntent
impl RefUnwindSafe for SignedIntent
impl Send for SignedIntent
impl Sync for SignedIntent
impl Unpin for SignedIntent
impl UnsafeUnpin for SignedIntent
impl UnwindSafe for SignedIntent
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