pub enum Line {
Parsed(SingerMessage),
Malformed(String),
}Expand description
One item read from the tap’s stdout: a parsed message, or a malformed line
(the caller applies the MalformedPolicy).
Variants§
Parsed(SingerMessage)
Malformed(String)
Auto Trait Implementations§
impl Freeze for Line
impl RefUnwindSafe for Line
impl Send for Line
impl Sync for Line
impl Unpin for Line
impl UnsafeUnpin for Line
impl UnwindSafe for Line
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