pub enum TryReadRes {
DATA(Vec<u8>),
EMPTY,
CLOSED,
}Variants§
Auto Trait Implementations§
impl Freeze for TryReadRes
impl RefUnwindSafe for TryReadRes
impl Send for TryReadRes
impl Sync for TryReadRes
impl Unpin for TryReadRes
impl UnwindSafe for TryReadRes
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