pub struct FeatureFlags {
pub edition: &'static str,
pub compliance: bool,
pub audit_trail: bool,
pub sso: bool,
pub story_generation: bool,
pub advanced_analytics: bool,
pub multi_org: bool,
pub encryption_at_rest: bool,
pub full_policy_engine: bool,
pub advanced_redaction: bool,
}Expand description
Describes which features are available in this edition.
Fields§
§edition: &'static str§compliance: bool§audit_trail: bool§sso: bool§story_generation: bool§advanced_analytics: bool§multi_org: bool§encryption_at_rest: bool§full_policy_engine: bool§advanced_redaction: boolTrait Implementations§
Source§impl Clone for FeatureFlags
impl Clone for FeatureFlags
Source§fn clone(&self) -> FeatureFlags
fn clone(&self) -> FeatureFlags
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 FeatureFlags
impl Debug for FeatureFlags
Auto Trait Implementations§
impl Freeze for FeatureFlags
impl RefUnwindSafe for FeatureFlags
impl Send for FeatureFlags
impl Sync for FeatureFlags
impl Unpin for FeatureFlags
impl UnsafeUnpin for FeatureFlags
impl UnwindSafe for FeatureFlags
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