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