pub struct Adr {
pub id: String,
pub commit: String,
pub frontmatter: AdrFrontmatter,
pub body: String,
}Expand description
An Architecture Decision Record.
Fields§
§id: StringUnique identifier (typically ADR-NNNN format).
commit: StringThe git commit this ADR is attached to.
frontmatter: AdrFrontmatterFrontmatter metadata.
body: StringMarkdown body content.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Adr
impl RefUnwindSafe for Adr
impl Send for Adr
impl Sync for Adr
impl Unpin for Adr
impl UnwindSafe for Adr
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