pub struct SetProgressBarArgs {
pub row: String,
pub col: String,
pub bg: Option<Option<String>>,
pub fg: Option<Option<String>>,
pub percent: Option<f64>,
pub remove_on_complete: Option<bool>,
pub emit: bool,
pub undo: bool,
pub save_selection: bool,
pub err_if_not_found: bool,
}Fields§
§row: String§col: String§bg: Option<Option<String>>§fg: Option<Option<String>>§percent: Option<f64>§remove_on_complete: Option<bool>§emit: bool§undo: bool§save_selection: bool§err_if_not_found: boolTrait Implementations§
Source§impl Clone for SetProgressBarArgs
impl Clone for SetProgressBarArgs
Source§fn clone(&self) -> SetProgressBarArgs
fn clone(&self) -> SetProgressBarArgs
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 SetProgressBarArgs
impl Debug for SetProgressBarArgs
Source§impl PartialEq for SetProgressBarArgs
impl PartialEq for SetProgressBarArgs
Source§fn eq(&self, other: &SetProgressBarArgs) -> bool
fn eq(&self, other: &SetProgressBarArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetProgressBarArgs
Auto Trait Implementations§
impl Freeze for SetProgressBarArgs
impl RefUnwindSafe for SetProgressBarArgs
impl Send for SetProgressBarArgs
impl Sync for SetProgressBarArgs
impl Unpin for SetProgressBarArgs
impl UnsafeUnpin for SetProgressBarArgs
impl UnwindSafe for SetProgressBarArgs
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