pub enum FlagCorrectness {
None,
CompName(Cow<'static, str>),
Regex(Regex),
}
Variants§
Implementations§
Source§impl FlagCorrectness
impl FlagCorrectness
pub fn show_issue(&self, f: &mut Formatter<'_>) -> Result
Trait Implementations§
Source§impl Clone for FlagCorrectness
impl Clone for FlagCorrectness
Source§fn clone(&self) -> FlagCorrectness
fn clone(&self) -> FlagCorrectness
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 FlagCorrectness
impl Debug for FlagCorrectness
Source§impl PartialEq for FlagCorrectness
impl PartialEq for FlagCorrectness
Auto Trait Implementations§
impl Freeze for FlagCorrectness
impl RefUnwindSafe for FlagCorrectness
impl Send for FlagCorrectness
impl Sync for FlagCorrectness
impl Unpin for FlagCorrectness
impl UnwindSafe for FlagCorrectness
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