pub enum Header {
Title(String),
Owner(String),
Accountable(String),
Status(Status),
Size(TShirtSize),
Priority(u64),
Parent(Path<'static>),
Custom(String, String),
}
Expand description
A valid, typed, header for an objective.
Variants§
Title(String)
The title of the objective.
Owner(String)
The owner of the objective.
Accountable(String)
The accountable party for the objective.
Status(Status)
The status of the objective.
Size(TShirtSize)
The size of the objective.
Priority(u64)
The priority of the objective.
Parent(Path<'static>)
The parent of the objective relative to the current objective.
Custom(String, String)
A custom header matching with x-gh-
Trait Implementations§
impl Eq for Header
impl StructuralPartialEq for Header
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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