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: GlobalContractIdentifier
Trait 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§fn clone_from(&mut self, source: &Self)
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<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<&UseGlobalContractAction> for UseGlobalContractAction
impl From<&UseGlobalContractAction> for UseGlobalContractAction
Source§fn from(value: &UseGlobalContractAction) -> Self
fn from(value: &UseGlobalContractAction) -> Self
Converts to this type from the input type.
Source§impl From<UseGlobalContractAction> for Action
impl From<UseGlobalContractAction> for Action
Source§fn from(value: UseGlobalContractAction) -> Self
fn from(value: UseGlobalContractAction) -> Self
Converts to this type from the input type.
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