pub enum FragmentStatus {
Complete,
Incomplete(ErrorKind),
}Expand description
Fragment completion status
Variants§
Trait Implementations§
Source§impl Clone for FragmentStatus
impl Clone for FragmentStatus
Source§fn clone(&self) -> FragmentStatus
fn clone(&self) -> FragmentStatus
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 moreSource§impl Debug for FragmentStatus
impl Debug for FragmentStatus
Source§impl PartialEq for FragmentStatus
impl PartialEq for FragmentStatus
impl Copy for FragmentStatus
impl Eq for FragmentStatus
impl StructuralPartialEq for FragmentStatus
Auto Trait Implementations§
impl Freeze for FragmentStatus
impl RefUnwindSafe for FragmentStatus
impl Send for FragmentStatus
impl Sync for FragmentStatus
impl Unpin for FragmentStatus
impl UnsafeUnpin for FragmentStatus
impl UnwindSafe for FragmentStatus
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