pub struct StackPreviewOptions {
pub refresh: Option<bool>,
pub replace: Option<Vec<String>>,
pub diff: Option<bool>,
pub target: Option<Vec<String>>,
pub target_dependents: Option<bool>,
pub exclude: Option<Vec<String>>,
pub exclude_dependents: Option<bool>,
pub show_secrets: Option<bool>,
pub continue_on_error: Option<bool>,
pub expect_no_changes: Option<bool>,
pub show_reads: Option<bool>,
pub show_replacement_steps: Option<bool>,
}Fields§
§refresh: Option<bool>§replace: Option<Vec<String>>§diff: Option<bool>§target: Option<Vec<String>>§target_dependents: Option<bool>§exclude: Option<Vec<String>>§exclude_dependents: Option<bool>§show_secrets: Option<bool>§continue_on_error: Option<bool>§expect_no_changes: Option<bool>§show_reads: Option<bool>§show_replacement_steps: Option<bool>Trait Implementations§
Source§impl Clone for StackPreviewOptions
impl Clone for StackPreviewOptions
Source§fn clone(&self) -> StackPreviewOptions
fn clone(&self) -> StackPreviewOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StackPreviewOptions
impl Debug for StackPreviewOptions
Source§impl Default for StackPreviewOptions
impl Default for StackPreviewOptions
Source§fn default() -> StackPreviewOptions
fn default() -> StackPreviewOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StackPreviewOptions
impl RefUnwindSafe for StackPreviewOptions
impl Send for StackPreviewOptions
impl Sync for StackPreviewOptions
impl Unpin for StackPreviewOptions
impl UnsafeUnpin for StackPreviewOptions
impl UnwindSafe for StackPreviewOptions
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