pub struct SpendControlLimitDetails {
pub source: Option<Option<String>>,
pub limit: String,
pub used: String,
pub remaining: String,
pub used_percent: i32,
pub remaining_percent: i32,
pub reset_after_seconds: i32,
pub reset_at: i32,
}Fields§
§source: Option<Option<String>>§limit: String§used: String§remaining: String§used_percent: i32§remaining_percent: i32§reset_after_seconds: i32§reset_at: i32Implementations§
Trait Implementations§
Source§impl Clone for SpendControlLimitDetails
impl Clone for SpendControlLimitDetails
Source§fn clone(&self) -> SpendControlLimitDetails
fn clone(&self) -> SpendControlLimitDetails
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 SpendControlLimitDetails
impl Debug for SpendControlLimitDetails
Source§impl Default for SpendControlLimitDetails
impl Default for SpendControlLimitDetails
Source§fn default() -> SpendControlLimitDetails
fn default() -> SpendControlLimitDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SpendControlLimitDetails
impl<'de> Deserialize<'de> for SpendControlLimitDetails
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 SpendControlLimitDetails
impl PartialEq for SpendControlLimitDetails
Source§impl Serialize for SpendControlLimitDetails
impl Serialize for SpendControlLimitDetails
impl StructuralPartialEq for SpendControlLimitDetails
Auto Trait Implementations§
impl Freeze for SpendControlLimitDetails
impl RefUnwindSafe for SpendControlLimitDetails
impl Send for SpendControlLimitDetails
impl Sync for SpendControlLimitDetails
impl Unpin for SpendControlLimitDetails
impl UnsafeUnpin for SpendControlLimitDetails
impl UnwindSafe for SpendControlLimitDetails
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