pub struct AboutFeatures {
pub feature_name: Option<String>,
pub feature_rate: Option<f64>,
}Expand description
List of additional features enabled on this account.
This type is not used in any activity, and only used as part of another schema.
Fields§
§feature_name: Option<String>The name of the feature.
feature_rate: Option<f64>The request limit rate for this feature, in queries per second.
Trait Implementations§
Source§impl Clone for AboutFeatures
impl Clone for AboutFeatures
Source§fn clone(&self) -> AboutFeatures
fn clone(&self) -> AboutFeatures
Returns a duplicate of the value. Read more
1.0.0 · 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 AboutFeatures
impl Debug for AboutFeatures
Source§impl Default for AboutFeatures
impl Default for AboutFeatures
Source§fn default() -> AboutFeatures
fn default() -> AboutFeatures
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AboutFeatures
impl<'de> Deserialize<'de> for AboutFeatures
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 Serialize for AboutFeatures
impl Serialize for AboutFeatures
impl NestedType for AboutFeatures
impl Part for AboutFeatures
Auto Trait Implementations§
impl Freeze for AboutFeatures
impl RefUnwindSafe for AboutFeatures
impl Send for AboutFeatures
impl Sync for AboutFeatures
impl Unpin for AboutFeatures
impl UnwindSafe for AboutFeatures
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