pub struct ArchitecturalEvolution {
pub id: String,
pub from_version: String,
pub to_version: String,
pub added_decisions: Vec<String>,
pub removed_decisions: Vec<String>,
pub modified_decisions: Vec<String>,
pub recorded_at: DateTime<Utc>,
pub description: String,
}Expand description
Represents architectural evolution between versions
Fields§
§id: StringUnique identifier
from_version: StringFrom version
to_version: StringTo version
added_decisions: Vec<String>Decisions that were added
removed_decisions: Vec<String>Decisions that were removed
modified_decisions: Vec<String>Decisions that were modified
recorded_at: DateTime<Utc>When this evolution was recorded
description: StringDescription of the evolution
Implementations§
Trait Implementations§
Source§impl Clone for ArchitecturalEvolution
impl Clone for ArchitecturalEvolution
Source§fn clone(&self) -> ArchitecturalEvolution
fn clone(&self) -> ArchitecturalEvolution
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 ArchitecturalEvolution
impl Debug for ArchitecturalEvolution
Source§impl<'de> Deserialize<'de> for ArchitecturalEvolution
impl<'de> Deserialize<'de> for ArchitecturalEvolution
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 ArchitecturalEvolution
impl RefUnwindSafe for ArchitecturalEvolution
impl Send for ArchitecturalEvolution
impl Sync for ArchitecturalEvolution
impl Unpin for ArchitecturalEvolution
impl UnwindSafe for ArchitecturalEvolution
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