pub enum AssemblyProgress {
Assembling,
Complete {
total_size_bytes: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for AssemblyProgress
impl Clone for AssemblyProgress
Source§fn clone(&self) -> AssemblyProgress
fn clone(&self) -> AssemblyProgress
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 moreimpl Copy for AssemblyProgress
Source§impl Debug for AssemblyProgress
impl Debug for AssemblyProgress
impl Eq for AssemblyProgress
Source§impl PartialEq for AssemblyProgress
impl PartialEq for AssemblyProgress
impl StructuralPartialEq for AssemblyProgress
Auto Trait Implementations§
impl Freeze for AssemblyProgress
impl RefUnwindSafe for AssemblyProgress
impl Send for AssemblyProgress
impl Sync for AssemblyProgress
impl Unpin for AssemblyProgress
impl UnsafeUnpin for AssemblyProgress
impl UnwindSafe for AssemblyProgress
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