pub struct AccountData {
pub data: Base64String,
pub data_hash: Hash,
pub discriminator: UnsignedInteger,
}Expand description
AccountData
JSON schema
{
"type": "object",
"required": [
"data",
"dataHash",
"discriminator"
],
"properties": {
"data": {
"$ref": "#/components/schemas/Base64String"
},
"dataHash": {
"$ref": "#/components/schemas/Hash"
},
"discriminator": {
"$ref": "#/components/schemas/UnsignedInteger"
}
},
"additionalProperties": false
}Fields§
§data: Base64String§data_hash: Hash§discriminator: UnsignedIntegerImplementations§
Source§impl AccountData
impl AccountData
pub fn builder() -> AccountData
Trait Implementations§
Source§impl Clone for AccountData
impl Clone for AccountData
Source§fn clone(&self) -> AccountData
fn clone(&self) -> AccountData
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 AccountData
impl Debug for AccountData
Source§impl<'de> Deserialize<'de> for AccountData
impl<'de> Deserialize<'de> for AccountData
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<AccountData> for AccountData
impl From<AccountData> for AccountData
Source§fn from(value: AccountData) -> Self
fn from(value: AccountData) -> Self
Converts to this type from the input type.
Source§impl Serialize for AccountData
impl Serialize for AccountData
Source§impl TryFrom<AccountData> for AccountData
impl TryFrom<AccountData> for AccountData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AccountData) -> Result<Self, ConversionError>
fn try_from(value: AccountData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AccountData
impl RefUnwindSafe for AccountData
impl Send for AccountData
impl Sync for AccountData
impl Unpin for AccountData
impl UnsafeUnpin for AccountData
impl UnwindSafe for AccountData
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