pub enum LineOrError {
Line(String),
Error(String),
}Variants§
Trait Implementations§
Source§impl Clone for LineOrError
impl Clone for LineOrError
Source§fn clone(&self) -> LineOrError
fn clone(&self) -> LineOrError
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 moreSource§impl Debug for LineOrError
impl Debug for LineOrError
Auto Trait Implementations§
impl Freeze for LineOrError
impl RefUnwindSafe for LineOrError
impl Send for LineOrError
impl Sync for LineOrError
impl Unpin for LineOrError
impl UnwindSafe for LineOrError
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