pub struct DelegateResult {
pub signed_delegate_action: SignedDelegateAction,
pub payload: String,
}Expand description
Result of creating a delegate action.
Contains the signed delegate action plus a pre-encoded payload for transport.
Fields§
§signed_delegate_action: SignedDelegateActionThe fully signed delegate action.
payload: StringBase64-encoded payload for HTTP/JSON transport.
Implementations§
Trait Implementations§
Source§impl Clone for DelegateResult
impl Clone for DelegateResult
Source§fn clone(&self) -> DelegateResult
fn clone(&self) -> DelegateResult
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 DelegateResult
impl RefUnwindSafe for DelegateResult
impl Send for DelegateResult
impl Sync for DelegateResult
impl Unpin for DelegateResult
impl UnsafeUnpin for DelegateResult
impl UnwindSafe for DelegateResult
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