pub struct SetProgressBarNameArgs {
pub name: 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§
§name: 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 SetProgressBarNameArgs
impl Clone for SetProgressBarNameArgs
Source§fn clone(&self) -> SetProgressBarNameArgs
fn clone(&self) -> SetProgressBarNameArgs
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 SetProgressBarNameArgs
impl Debug for SetProgressBarNameArgs
Source§impl PartialEq for SetProgressBarNameArgs
impl PartialEq for SetProgressBarNameArgs
Source§fn eq(&self, other: &SetProgressBarNameArgs) -> bool
fn eq(&self, other: &SetProgressBarNameArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetProgressBarNameArgs
Auto Trait Implementations§
impl Freeze for SetProgressBarNameArgs
impl RefUnwindSafe for SetProgressBarNameArgs
impl Send for SetProgressBarNameArgs
impl Sync for SetProgressBarNameArgs
impl Unpin for SetProgressBarNameArgs
impl UnsafeUnpin for SetProgressBarNameArgs
impl UnwindSafe for SetProgressBarNameArgs
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