pub enum ResultView {
OneLine(String),
Multiline(String),
Error(String),
}Variants§
Trait Implementations§
Source§impl Clone for ResultView
impl Clone for ResultView
Source§fn clone(&self) -> ResultView
fn clone(&self) -> ResultView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResultView
impl Debug for ResultView
Source§impl PartialEq for ResultView
impl PartialEq for ResultView
impl StructuralPartialEq for ResultView
Auto Trait Implementations§
impl Freeze for ResultView
impl RefUnwindSafe for ResultView
impl Send for ResultView
impl Sync for ResultView
impl Unpin for ResultView
impl UnsafeUnpin for ResultView
impl UnwindSafe for ResultView
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