pub struct Feature {Show 14 fields
pub balance: Option<f64>,
pub credit_schema: Option<Vec<CreditSchema>>,
pub id: String,
pub included_usage: Option<f64>,
pub interval: Option<String>,
pub interval_count: Option<u32>,
pub name: Option<String>,
pub next_reset_at: Option<f64>,
pub overage_allowed: Option<bool>,
pub type_: Option<String>,
pub unlimited: Option<bool>,
pub usage: Option<f64>,
pub archived: Option<bool>,
pub display: Option<HashMap<String, String>>,
}Fields§
§balance: Option<f64>§credit_schema: Option<Vec<CreditSchema>>§id: String§included_usage: Option<f64>§interval: Option<String>§interval_count: Option<u32>§name: Option<String>§next_reset_at: Option<f64>§overage_allowed: Option<bool>§type_: Option<String>§unlimited: Option<bool>§usage: Option<f64>§archived: Option<bool>§display: Option<HashMap<String, String>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Feature
impl<'de> Deserialize<'de> for Feature
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 Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnwindSafe for Feature
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