pub struct RateLimitResetCredit {
pub description: Option<String>,
pub expires_at: Option<i64>,
pub granted_at: i64,
pub id: String,
pub reset_type: RateLimitResetType,
pub status: RateLimitResetCreditStatus,
pub title: Option<String>,
}Fields§
§description: Option<String>§expires_at: Option<i64>§granted_at: i64§id: String§reset_type: RateLimitResetType§status: RateLimitResetCreditStatus§title: Option<String>Trait Implementations§
Source§impl Clone for RateLimitResetCredit
impl Clone for RateLimitResetCredit
Source§fn clone(&self) -> RateLimitResetCredit
fn clone(&self) -> RateLimitResetCredit
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 RateLimitResetCredit
impl Debug for RateLimitResetCredit
Source§impl<'de> Deserialize<'de> for RateLimitResetCredit
impl<'de> Deserialize<'de> for RateLimitResetCredit
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 RateLimitResetCredit
impl PartialEq for RateLimitResetCredit
Source§impl Serialize for RateLimitResetCredit
impl Serialize for RateLimitResetCredit
impl StructuralPartialEq for RateLimitResetCredit
Auto Trait Implementations§
impl Freeze for RateLimitResetCredit
impl RefUnwindSafe for RateLimitResetCredit
impl Send for RateLimitResetCredit
impl Sync for RateLimitResetCredit
impl Unpin for RateLimitResetCredit
impl UnsafeUnpin for RateLimitResetCredit
impl UnwindSafe for RateLimitResetCredit
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