pub enum ProgressJobDoneBehavior {
Keep,
Collapse,
Hide,
}Expand description
Behavior when a progress job completes.
Variants§
Keep
Keep the job and all children visible (default).
Collapse
Keep the job visible but hide its children.
Hide
Remove the job from display entirely.
Trait Implementations§
Source§impl Debug for ProgressJobDoneBehavior
impl Debug for ProgressJobDoneBehavior
Source§impl Default for ProgressJobDoneBehavior
impl Default for ProgressJobDoneBehavior
Source§fn default() -> ProgressJobDoneBehavior
fn default() -> ProgressJobDoneBehavior
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProgressJobDoneBehavior
impl PartialEq for ProgressJobDoneBehavior
Source§fn eq(&self, other: &ProgressJobDoneBehavior) -> bool
fn eq(&self, other: &ProgressJobDoneBehavior) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProgressJobDoneBehavior
Auto Trait Implementations§
impl Freeze for ProgressJobDoneBehavior
impl RefUnwindSafe for ProgressJobDoneBehavior
impl Send for ProgressJobDoneBehavior
impl Sync for ProgressJobDoneBehavior
impl Unpin for ProgressJobDoneBehavior
impl UnsafeUnpin for ProgressJobDoneBehavior
impl UnwindSafe for ProgressJobDoneBehavior
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