pub enum DeterministicAccountStateInit {
V1(DeterministicAccountStateInitV1),
}Expand description
DeterministicAccountStateInit
JSON schema
{
"oneOf": [
{
"type": "object",
"required": [
"V1"
],
"properties": {
"V1": {
"$ref": "#/components/schemas/DeterministicAccountStateInitV1"
}
},
"additionalProperties": false
}
]
}Variants§
Trait Implementations§
Source§impl Clone for DeterministicAccountStateInit
impl Clone for DeterministicAccountStateInit
Source§fn clone(&self) -> DeterministicAccountStateInit
fn clone(&self) -> DeterministicAccountStateInit
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<'de> Deserialize<'de> for DeterministicAccountStateInit
impl<'de> Deserialize<'de> for DeterministicAccountStateInit
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<&DeterministicAccountStateInit> for DeterministicAccountStateInit
impl From<&DeterministicAccountStateInit> for DeterministicAccountStateInit
Source§fn from(value: &DeterministicAccountStateInit) -> Self
fn from(value: &DeterministicAccountStateInit) -> Self
Converts to this type from the input type.
Source§impl From<DeterministicAccountStateInitV1> for DeterministicAccountStateInit
impl From<DeterministicAccountStateInitV1> for DeterministicAccountStateInit
Source§fn from(value: DeterministicAccountStateInitV1) -> Self
fn from(value: DeterministicAccountStateInitV1) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeterministicAccountStateInit
impl RefUnwindSafe for DeterministicAccountStateInit
impl Send for DeterministicAccountStateInit
impl Sync for DeterministicAccountStateInit
impl Unpin for DeterministicAccountStateInit
impl UnwindSafe for DeterministicAccountStateInit
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