pub struct SignedDelegateAction {
pub delegate_action: DelegateAction,
pub signature: Signature,
}
Expand description
SignedDelegateAction
JSON schema
{
"type": "object",
"required": [
"delegate_action",
"signature"
],
"properties": {
"delegate_action": {
"$ref": "#/components/schemas/DelegateAction"
},
"signature": {
"$ref": "#/components/schemas/Signature"
}
}
}
Fields§
§delegate_action: DelegateAction
§signature: Signature
Trait Implementations§
Source§impl Clone for SignedDelegateAction
impl Clone for SignedDelegateAction
Source§fn clone(&self) -> SignedDelegateAction
fn clone(&self) -> SignedDelegateAction
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 moreSource§impl Debug for SignedDelegateAction
impl Debug for SignedDelegateAction
Source§impl<'de> Deserialize<'de> for SignedDelegateAction
impl<'de> Deserialize<'de> for SignedDelegateAction
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 From<&SignedDelegateAction> for SignedDelegateAction
impl From<&SignedDelegateAction> for SignedDelegateAction
Source§fn from(value: &SignedDelegateAction) -> Self
fn from(value: &SignedDelegateAction) -> Self
Converts to this type from the input type.
Source§impl From<SignedDelegateAction> for Action
impl From<SignedDelegateAction> for Action
Source§fn from(value: SignedDelegateAction) -> Self
fn from(value: SignedDelegateAction) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SignedDelegateAction
impl RefUnwindSafe for SignedDelegateAction
impl Send for SignedDelegateAction
impl Sync for SignedDelegateAction
impl Unpin for SignedDelegateAction
impl UnwindSafe for SignedDelegateAction
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