pub struct BillingStatus {
pub tier: Option<String>,
pub facts_used: Option<u64>,
pub facts_limit: Option<u64>,
pub features: Option<Value>,
}Expand description
Billing status response.
Fields§
§tier: Option<String>§facts_used: Option<u64>§facts_limit: Option<u64>§features: Option<Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BillingStatus
impl<'de> Deserialize<'de> for BillingStatus
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
Auto Trait Implementations§
impl Freeze for BillingStatus
impl RefUnwindSafe for BillingStatus
impl Send for BillingStatus
impl Sync for BillingStatus
impl Unpin for BillingStatus
impl UnsafeUnpin for BillingStatus
impl UnwindSafe for BillingStatus
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