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