pub enum OciProgressIndication {
Hidden,
ProgressBar {
message: Option<String>,
current: u64,
total: u64,
bytes: bool,
},
Spinner {
message: Option<String>,
},
Completed {
message: Option<String>,
total: Option<u64>,
bytes: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for OciProgressIndication
impl Clone for OciProgressIndication
Source§fn clone(&self) -> OciProgressIndication
fn clone(&self) -> OciProgressIndication
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for OciProgressIndication
impl RefUnwindSafe for OciProgressIndication
impl Send for OciProgressIndication
impl Sync for OciProgressIndication
impl Unpin for OciProgressIndication
impl UnwindSafe for OciProgressIndication
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