pub struct UseGlobalContractAction {
pub contract_identifier: GlobalContractIdentifier,
}Expand description
Use global contract action
JSON schema
{
"description": "Use global contract action",
"type": "object",
"required": [
"contract_identifier"
],
"properties": {
"contract_identifier": {
"$ref": "#/components/schemas/GlobalContractIdentifier"
}
}
}Fields§
§contract_identifier: GlobalContractIdentifierTrait Implementations§
Source§impl Clone for UseGlobalContractAction
impl Clone for UseGlobalContractAction
Source§fn clone(&self) -> UseGlobalContractAction
fn clone(&self) -> UseGlobalContractAction
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 UseGlobalContractAction
impl Debug for UseGlobalContractAction
Source§impl<'de> Deserialize<'de> for UseGlobalContractAction
impl<'de> Deserialize<'de> for UseGlobalContractAction
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UseGlobalContractAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UseGlobalContractAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&UseGlobalContractAction> for UseGlobalContractAction
impl From<&UseGlobalContractAction> for UseGlobalContractAction
Source§fn from(value: &UseGlobalContractAction) -> UseGlobalContractAction
fn from(value: &UseGlobalContractAction) -> UseGlobalContractAction
Converts to this type from the input type.
Source§impl From<UseGlobalContractAction> for Action
impl From<UseGlobalContractAction> for Action
Source§fn from(value: UseGlobalContractAction) -> Action
fn from(value: UseGlobalContractAction) -> Action
Converts to this type from the input type.
Source§impl Serialize for UseGlobalContractAction
impl Serialize for UseGlobalContractAction
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 UseGlobalContractAction
impl RefUnwindSafe for UseGlobalContractAction
impl Send for UseGlobalContractAction
impl Sync for UseGlobalContractAction
impl Unpin for UseGlobalContractAction
impl UnwindSafe for UseGlobalContractAction
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