pub struct CapsuleContent {
pub intent: String,
pub strategy: String,
pub scope: String,
pub changed_files: Vec<String>,
pub rationale: String,
pub outcome: String,
}Expand description
Capsule content - structured description of the evolution
Fields§
§intent: StringIntent of the evolution
strategy: StringStrategy followed
scope: StringScope of changes
changed_files: Vec<String>Files that were changed
rationale: StringRationale behind changes
outcome: StringOutcome description
Trait Implementations§
Source§impl Clone for CapsuleContent
impl Clone for CapsuleContent
Source§fn clone(&self) -> CapsuleContent
fn clone(&self) -> CapsuleContent
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 CapsuleContent
impl Debug for CapsuleContent
Source§impl Default for CapsuleContent
impl Default for CapsuleContent
Source§fn default() -> CapsuleContent
fn default() -> CapsuleContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CapsuleContent
impl<'de> Deserialize<'de> for CapsuleContent
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 CapsuleContent
impl RefUnwindSafe for CapsuleContent
impl Send for CapsuleContent
impl Sync for CapsuleContent
impl Unpin for CapsuleContent
impl UnsafeUnpin for CapsuleContent
impl UnwindSafe for CapsuleContent
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