pub struct FeatureFlags {
pub enable_search: bool,
pub enable_preview: bool,
pub enable_delete: bool,
pub enable_download: bool,
pub enable_move: bool,
pub enable_batch_actions: bool,
}Fields§
§enable_search: bool§enable_preview: bool§enable_delete: bool§enable_download: bool§enable_move: bool§enable_batch_actions: 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 (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 FeatureFlags
impl Debug for FeatureFlags
Source§impl Default for FeatureFlags
impl Default for FeatureFlags
Source§impl PartialEq for FeatureFlags
impl PartialEq for FeatureFlags
Source§fn eq(&self, other: &FeatureFlags) -> bool
fn eq(&self, other: &FeatureFlags) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FeatureFlags
impl StructuralPartialEq 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