pub enum BrokenReason {
BadLeftString,
NoRightString,
BadRightString {
right_string: String,
},
Duplicated {
another_left_string: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BrokenReason
impl RefUnwindSafe for BrokenReason
impl Send for BrokenReason
impl Sync for BrokenReason
impl Unpin for BrokenReason
impl UnwindSafe for BrokenReason
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