pub enum IoResult {
Closed,
Done {
length: usize,
will_close: bool,
},
}
Variants§
Trait Implementations§
Source§impl Ord for IoResult
impl Ord for IoResult
Source§impl PartialOrd for IoResult
impl PartialOrd for IoResult
impl Copy for IoResult
impl Eq for IoResult
impl StructuralPartialEq for IoResult
Auto Trait Implementations§
impl Freeze for IoResult
impl RefUnwindSafe for IoResult
impl Send for IoResult
impl Sync for IoResult
impl Unpin for IoResult
impl UnwindSafe for IoResult
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