pub struct FetchRsaPublicKeyResponse {
pub code: Option<String>,
pub message: Option<String>,
pub data: Option<String>,
pub success: Option<bool>,
}Fields§
§code: Option<String>§message: Option<String>§data: Option<String>§success: Option<bool>Implementations§
Source§impl FetchRsaPublicKeyResponse
impl FetchRsaPublicKeyResponse
pub fn new() -> FetchRsaPublicKeyResponse
Trait Implementations§
Source§impl Clone for FetchRsaPublicKeyResponse
impl Clone for FetchRsaPublicKeyResponse
Source§fn clone(&self) -> FetchRsaPublicKeyResponse
fn clone(&self) -> FetchRsaPublicKeyResponse
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 Debug for FetchRsaPublicKeyResponse
impl Debug for FetchRsaPublicKeyResponse
Source§impl Default for FetchRsaPublicKeyResponse
impl Default for FetchRsaPublicKeyResponse
Source§fn default() -> FetchRsaPublicKeyResponse
fn default() -> FetchRsaPublicKeyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FetchRsaPublicKeyResponse
impl<'de> Deserialize<'de> for FetchRsaPublicKeyResponse
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 PartialEq for FetchRsaPublicKeyResponse
impl PartialEq for FetchRsaPublicKeyResponse
Source§fn eq(&self, other: &FetchRsaPublicKeyResponse) -> bool
fn eq(&self, other: &FetchRsaPublicKeyResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FetchRsaPublicKeyResponse
Auto Trait Implementations§
impl Freeze for FetchRsaPublicKeyResponse
impl RefUnwindSafe for FetchRsaPublicKeyResponse
impl Send for FetchRsaPublicKeyResponse
impl Sync for FetchRsaPublicKeyResponse
impl Unpin for FetchRsaPublicKeyResponse
impl UnsafeUnpin for FetchRsaPublicKeyResponse
impl UnwindSafe for FetchRsaPublicKeyResponse
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