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: SignatureTrait 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§const fn clone_from(&mut self, source: &Self)
const 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<SignedDelegateAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SignedDelegateAction, <__D as Deserializer<'de>>::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) -> SignedDelegateAction
fn from(value: &SignedDelegateAction) -> SignedDelegateAction
Converts to this type from the input type.
Source§impl From<SignedDelegateAction> for Action
impl From<SignedDelegateAction> for Action
Source§fn from(value: SignedDelegateAction) -> Action
fn from(value: SignedDelegateAction) -> Action
Converts to this type from the input type.
Source§impl Serialize for SignedDelegateAction
impl Serialize for SignedDelegateAction
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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