pub struct QuickArgs {Show 14 fields
pub title: String,
pub description: Option<String>,
pub acceptance: Option<String>,
pub notes: Option<String>,
pub verify: Option<String>,
pub priority: Option<u8>,
pub by: Option<String>,
pub produces: Option<String>,
pub requires: Option<String>,
pub parent: Option<String>,
pub on_fail: Option<OnFailAction>,
pub pass_ok: bool,
pub verify_timeout: Option<u64>,
pub force: bool,
}Expand description
Arguments for quick-create command.
Fields§
§title: String§description: Option<String>§acceptance: Option<String>§notes: Option<String>§verify: Option<String>§priority: Option<u8>§by: Option<String>§produces: Option<String>§requires: Option<String>§parent: Option<String>Parent unit ID (creates child unit under parent)
on_fail: Option<OnFailAction>Action on verify failure
pass_ok: boolSkip fail-first check (allow verify to already pass)
verify_timeout: Option<u64>Timeout in seconds for the verify command (kills process on expiry).
force: boolSkip duplicate title check
Auto Trait Implementations§
impl Freeze for QuickArgs
impl RefUnwindSafe for QuickArgs
impl Send for QuickArgs
impl Sync for QuickArgs
impl Unpin for QuickArgs
impl UnsafeUnpin for QuickArgs
impl UnwindSafe for QuickArgs
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more