pub struct Prefill {Show 14 fields
pub title: Option<String>,
pub description: Option<String>,
pub acceptance: Option<String>,
pub notes: Option<String>,
pub design: Option<String>,
pub verify: Option<String>,
pub parent: Option<String>,
pub priority: Option<u8>,
pub labels: Option<String>,
pub assignee: Option<String>,
pub deps: Option<String>,
pub produces: Option<String>,
pub requires: Option<String>,
pub pass_ok: Option<bool>,
}Expand description
Pre-filled values from CLI flags that were already provided.
Any Some field skips the corresponding prompt.
Fields§
§title: Option<String>§description: Option<String>§acceptance: Option<String>§notes: Option<String>§design: Option<String>§verify: Option<String>§parent: Option<String>§priority: Option<u8>§labels: Option<String>§assignee: Option<String>§deps: Option<String>§produces: Option<String>§requires: Option<String>§pass_ok: Option<bool>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Prefill
impl RefUnwindSafe for Prefill
impl Send for Prefill
impl Sync for Prefill
impl Unpin for Prefill
impl UnsafeUnpin for Prefill
impl UnwindSafe for Prefill
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