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 (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 FragmentStatus
Source§impl Debug for FragmentStatus
impl Debug for FragmentStatus
impl Eq for FragmentStatus
Source§impl PartialEq for FragmentStatus
impl PartialEq for FragmentStatus
Source§fn eq(&self, other: &FragmentStatus) -> bool
fn eq(&self, other: &FragmentStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.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