pub struct Feature {
pub feature: Option<String>,
pub display_name: Option<String>,
pub applies_to: Option<String>,
pub enable_at: Option<String>,
pub beta: Option<bool>,
pub development: Option<bool>,
pub autoexpand: Option<bool>,
pub feature_flag: Option<FeatureFlag>,
}Expand description
Metadata about a Canvas feature flag option.
Fields§
§feature: Option<String>§display_name: Option<String>§applies_to: Option<String>§enable_at: Option<String>§beta: Option<bool>§development: Option<bool>§autoexpand: Option<bool>§feature_flag: Option<FeatureFlag>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 UnsafeUnpin 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