pub enum FeedbackKind {
Info,
Ok,
Warn,
Error,
}Variants§
Trait Implementations§
Source§impl Clone for FeedbackKind
impl Clone for FeedbackKind
Source§fn clone(&self) -> FeedbackKind
fn clone(&self) -> FeedbackKind
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 FeedbackKind
impl Debug for FeedbackKind
Source§impl PartialEq for FeedbackKind
impl PartialEq for FeedbackKind
Source§fn eq(&self, other: &FeedbackKind) -> bool
fn eq(&self, other: &FeedbackKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FeedbackKind
impl Eq for FeedbackKind
impl StructuralPartialEq for FeedbackKind
Auto Trait Implementations§
impl Freeze for FeedbackKind
impl RefUnwindSafe for FeedbackKind
impl Send for FeedbackKind
impl Sync for FeedbackKind
impl Unpin for FeedbackKind
impl UnsafeUnpin for FeedbackKind
impl UnwindSafe for FeedbackKind
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