pub struct FeatureFlagEntry {
pub name: String,
pub state: FlagState,
pub description: String,
}Expand description
A single feature flag entry.
Fields§
§name: String§state: FlagState§description: StringTrait Implementations§
Source§impl Clone for FeatureFlagEntry
impl Clone for FeatureFlagEntry
Source§fn clone(&self) -> FeatureFlagEntry
fn clone(&self) -> FeatureFlagEntry
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 moreAuto Trait Implementations§
impl Freeze for FeatureFlagEntry
impl RefUnwindSafe for FeatureFlagEntry
impl Send for FeatureFlagEntry
impl Sync for FeatureFlagEntry
impl Unpin for FeatureFlagEntry
impl UnsafeUnpin for FeatureFlagEntry
impl UnwindSafe for FeatureFlagEntry
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