pub struct FeatureContext {
pub name: String,
pub description: String,
pub scope: String,
pub conventions: Vec<String>,
}Expand description
Context for a specific feature or work area.
Fields§
§name: StringName of the feature context.
description: StringDescription of the feature or work area.
scope: StringAssociated scope for this feature.
conventions: Vec<String>Specific conventions for this feature.
Trait Implementations§
Source§impl Clone for FeatureContext
impl Clone for FeatureContext
Source§fn clone(&self) -> FeatureContext
fn clone(&self) -> FeatureContext
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 FeatureContext
impl Debug for FeatureContext
Source§impl<'de> Deserialize<'de> for FeatureContext
impl<'de> Deserialize<'de> for FeatureContext
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 FeatureContext
impl RefUnwindSafe for FeatureContext
impl Send for FeatureContext
impl Sync for FeatureContext
impl Unpin for FeatureContext
impl UnsafeUnpin for FeatureContext
impl UnwindSafe for FeatureContext
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