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