pub struct AdrEntry {
pub key: String,
pub name: String,
pub status: Option<String>,
}Expand description
One ADR in the overview, with its lifecycle status.
Fields§
§key: StringThe ADR node key (adr:<id>).
name: StringThe ADR title.
status: Option<String>Lifecycle status (Accepted, …), if recorded.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdrEntry
impl RefUnwindSafe for AdrEntry
impl Send for AdrEntry
impl Sync for AdrEntry
impl Unpin for AdrEntry
impl UnsafeUnpin for AdrEntry
impl UnwindSafe for AdrEntry
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