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