pub struct Inputs<'a> {
pub tech: Option<&'a str>,
pub forge: Option<&'a str>,
pub repo: Option<&'a str>,
pub workflow: Option<Workflow>,
pub style: Option<Style>,
pub nix: Option<bool>,
}Expand description
Explicit invocation answers; absence falls through to configuration.
Fields§
§tech: Option<&'a str>Binding override.
forge: Option<&'a str>Forge override.
repo: Option<&'a str>Repository override.
workflow: Option<Workflow>Workflow override.
style: Option<Style>Release style override.
nix: Option<bool>Nix capability override.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Inputs<'a>
impl<'a> RefUnwindSafe for Inputs<'a>
impl<'a> Send for Inputs<'a>
impl<'a> Sync for Inputs<'a>
impl<'a> Unpin for Inputs<'a>
impl<'a> UnsafeUnpin for Inputs<'a>
impl<'a> UnwindSafe for Inputs<'a>
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