pub struct MigrateArgs {
pub sources: Vec<String>,
pub dry_run: bool,
pub reconcile: bool,
pub against: Option<String>,
pub blame: Option<String>,
pub bind_check: Option<String>,
pub platforms: Vec<String>,
pub triggered_by: Vec<String>,
pub surfaces: Vec<String>,
pub verified_at_sha: Option<String>,
}Expand description
The parsed ev migrate invocation (built in main.rs from the clap subcommand).
Fields§
§sources: Vec<String>§dry_run: bool§reconcile: bool§against: Option<String>§blame: Option<String>§bind_check: Option<String>§platforms: Vec<String>§triggered_by: Vec<String>§surfaces: Vec<String>§verified_at_sha: Option<String>Auto Trait Implementations§
impl Freeze for MigrateArgs
impl RefUnwindSafe for MigrateArgs
impl Send for MigrateArgs
impl Sync for MigrateArgs
impl Unpin for MigrateArgs
impl UnsafeUnpin for MigrateArgs
impl UnwindSafe for MigrateArgs
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