pub struct UserKeyPairInfoResponsePayload {
pub status: bool,
pub message: Option<String>,
pub data: Option<UserKeyPairInfoResponseData>,
}Expand description
Response for USER_KEY_PAIR_INFO_PATH endpoint.
Fields§
§status: boolTrue when API call was successful; false otherwise.
message: Option<String>Filen reason for success or failure.
data: Option<UserKeyPairInfoResponseData>Resulting data.
Trait Implementations§
Source§impl Clone for UserKeyPairInfoResponsePayload
impl Clone for UserKeyPairInfoResponsePayload
Source§fn clone(&self) -> UserKeyPairInfoResponsePayload
fn clone(&self) -> UserKeyPairInfoResponsePayload
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UserKeyPairInfoResponsePayload
impl<'de> Deserialize<'de> for UserKeyPairInfoResponsePayload
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 FilenResponse<UserKeyPairInfoResponseData> for UserKeyPairInfoResponsePayload
impl FilenResponse<UserKeyPairInfoResponseData> for UserKeyPairInfoResponsePayload
Source§fn status_ref(&self) -> bool
fn status_ref(&self) -> bool
True when API call was successful; false otherwise.
Source§fn message_ref(&self) -> Option<&str>
fn message_ref(&self) -> Option<&str>
Filen reason for success or failure.
Source§fn data_ref(&self) -> Option<&UserKeyPairInfoResponseData>
fn data_ref(&self) -> Option<&UserKeyPairInfoResponseData>
Reference to the data associated with response.
Source§impl PartialEq for UserKeyPairInfoResponsePayload
impl PartialEq for UserKeyPairInfoResponsePayload
Source§fn eq(&self, other: &UserKeyPairInfoResponsePayload) -> bool
fn eq(&self, other: &UserKeyPairInfoResponsePayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UserKeyPairInfoResponsePayload
impl StructuralPartialEq for UserKeyPairInfoResponsePayload
Auto Trait Implementations§
impl Freeze for UserKeyPairInfoResponsePayload
impl RefUnwindSafe for UserKeyPairInfoResponsePayload
impl Send for UserKeyPairInfoResponsePayload
impl Sync for UserKeyPairInfoResponsePayload
impl Unpin for UserKeyPairInfoResponsePayload
impl UnsafeUnpin for UserKeyPairInfoResponsePayload
impl UnwindSafe for UserKeyPairInfoResponsePayload
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