pub struct PostGetMultipleAccountInterfacesBodyParams {
pub addresses: Vec<SerializablePubkey>,
}Expand description
Request for getMultipleAccountInterfaces
JSON schema
{
"description": "Request for getMultipleAccountInterfaces",
"type": "object",
"required": [
"addresses"
],
"properties": {
"addresses": {
"description": "List of account addresses to look up (max 100)",
"type": "array",
"items": {
"$ref": "#/components/schemas/SerializablePubkey"
}
}
},
"additionalProperties": false
}Fields§
§addresses: Vec<SerializablePubkey>List of account addresses to look up (max 100)
Implementations§
Trait Implementations§
Source§impl Clone for PostGetMultipleAccountInterfacesBodyParams
impl Clone for PostGetMultipleAccountInterfacesBodyParams
Source§fn clone(&self) -> PostGetMultipleAccountInterfacesBodyParams
fn clone(&self) -> PostGetMultipleAccountInterfacesBodyParams
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 PostGetMultipleAccountInterfacesBodyParams
impl<'de> Deserialize<'de> for PostGetMultipleAccountInterfacesBodyParams
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<PostGetMultipleAccountInterfacesBodyParams> for PostGetMultipleAccountInterfacesBodyParams
impl From<PostGetMultipleAccountInterfacesBodyParams> for PostGetMultipleAccountInterfacesBodyParams
Source§fn from(value: PostGetMultipleAccountInterfacesBodyParams) -> Self
fn from(value: PostGetMultipleAccountInterfacesBodyParams) -> Self
Converts to this type from the input type.
Source§impl TryFrom<PostGetMultipleAccountInterfacesBodyParams> for PostGetMultipleAccountInterfacesBodyParams
impl TryFrom<PostGetMultipleAccountInterfacesBodyParams> for PostGetMultipleAccountInterfacesBodyParams
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: PostGetMultipleAccountInterfacesBodyParams,
) -> Result<Self, ConversionError>
fn try_from( value: PostGetMultipleAccountInterfacesBodyParams, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PostGetMultipleAccountInterfacesBodyParams
impl RefUnwindSafe for PostGetMultipleAccountInterfacesBodyParams
impl Send for PostGetMultipleAccountInterfacesBodyParams
impl Sync for PostGetMultipleAccountInterfacesBodyParams
impl Unpin for PostGetMultipleAccountInterfacesBodyParams
impl UnsafeUnpin for PostGetMultipleAccountInterfacesBodyParams
impl UnwindSafe for PostGetMultipleAccountInterfacesBodyParams
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