pub enum IssueResolution {
ReplacementCharacter,
SuccessfulConversion(char),
Skipped,
}Variants§
Trait Implementations§
Source§impl Clone for IssueResolution
impl Clone for IssueResolution
Source§fn clone(&self) -> IssueResolution
fn clone(&self) -> IssueResolution
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 moreAuto Trait Implementations§
impl Freeze for IssueResolution
impl RefUnwindSafe for IssueResolution
impl Send for IssueResolution
impl Sync for IssueResolution
impl Unpin for IssueResolution
impl UnwindSafe for IssueResolution
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