pub enum AsyncNativeFileReadState {
Init,
Pending,
CompletedSuccess(usize),
CompletedFailure(i32),
}Variants§
Trait Implementations§
Source§impl Clone for AsyncNativeFileReadState
impl Clone for AsyncNativeFileReadState
Source§fn clone(&self) -> AsyncNativeFileReadState
fn clone(&self) -> AsyncNativeFileReadState
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 moreimpl Copy for AsyncNativeFileReadState
Auto Trait Implementations§
impl Freeze for AsyncNativeFileReadState
impl RefUnwindSafe for AsyncNativeFileReadState
impl Send for AsyncNativeFileReadState
impl Sync for AsyncNativeFileReadState
impl Unpin for AsyncNativeFileReadState
impl UnwindSafe for AsyncNativeFileReadState
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