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