pub struct FeatureSelection {
pub enabled: BTreeSet<String>,
}Fields§
§enabled: BTreeSet<String>Trait Implementations§
Source§impl Clone for FeatureSelection
impl Clone for FeatureSelection
Source§fn clone(&self) -> FeatureSelection
fn clone(&self) -> FeatureSelection
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 FeatureSelection
impl Debug for FeatureSelection
Source§impl Default for FeatureSelection
impl Default for FeatureSelection
Source§fn default() -> FeatureSelection
fn default() -> FeatureSelection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeatureSelection
impl<'de> Deserialize<'de> for FeatureSelection
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
impl Eq for FeatureSelection
Source§impl JsonSchema for FeatureSelection
impl JsonSchema for FeatureSelection
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for FeatureSelection
impl PartialEq for FeatureSelection
Source§impl Serialize for FeatureSelection
impl Serialize for FeatureSelection
impl StructuralPartialEq for FeatureSelection
Auto Trait Implementations§
impl Freeze for FeatureSelection
impl RefUnwindSafe for FeatureSelection
impl Send for FeatureSelection
impl Sync for FeatureSelection
impl Unpin for FeatureSelection
impl UnsafeUnpin for FeatureSelection
impl UnwindSafe for FeatureSelection
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