pub struct SubmitOptions {
pub branch: Option<String>,
pub submit_stack: bool,
pub downstack: bool,
pub dry_run: bool,
pub push_mode: PushMode,
pub desc: Option<String>,
pub draft: bool,
pub ready: bool,
pub rebuild_overview: bool,
}Expand description
The resolved inputs for submit - one bundle instead of nine positional
arguments. Submit::run resolves the flag/config defaults and fills it.
Fields§
§branch: Option<String>§submit_stack: bool§downstack: bool§dry_run: bool§push_mode: PushMode§desc: Option<String>§draft: bool§ready: bool§rebuild_overview: boolAuto Trait Implementations§
impl Freeze for SubmitOptions
impl RefUnwindSafe for SubmitOptions
impl Send for SubmitOptions
impl Sync for SubmitOptions
impl Unpin for SubmitOptions
impl UnsafeUnpin for SubmitOptions
impl UnwindSafe for SubmitOptions
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