pub struct FeatureInfo {
pub slug: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Expand description
Basic metadata identifying a feature.
The slug serves as the unique identifier for the feature
across directory names, branch names, and state files.
Fields§
§slug: StringURL-safe feature slug used as unique identifier (e.g., "add-user-auth").
created_at: DateTime<Utc>When this feature was created.
updated_at: DateTime<Utc>When this feature was last updated.
Trait Implementations§
Source§impl Clone for FeatureInfo
impl Clone for FeatureInfo
Source§fn clone(&self) -> FeatureInfo
fn clone(&self) -> FeatureInfo
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 FeatureInfo
impl Debug for FeatureInfo
Source§impl<'de> Deserialize<'de> for FeatureInfo
impl<'de> Deserialize<'de> for FeatureInfo
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 FeatureInfo
impl RefUnwindSafe for FeatureInfo
impl Send for FeatureInfo
impl Sync for FeatureInfo
impl Unpin for FeatureInfo
impl UnsafeUnpin for FeatureInfo
impl UnwindSafe for FeatureInfo
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