pub enum ReadLineResult {
Line(Vec<u8>),
Truncated(Vec<u8>),
Eof,
}Expand description
Result of a bounded line read.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadLineResult
impl RefUnwindSafe for ReadLineResult
impl Send for ReadLineResult
impl Sync for ReadLineResult
impl Unpin for ReadLineResult
impl UnwindSafe for ReadLineResult
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