pub enum HckInput<P: AsRef<Path>> {
Stdin,
Path(P),
}
Expand description
The input types that hck
can parse.
Variants§
Auto Trait Implementations§
impl<P> Freeze for HckInput<P>where
P: Freeze,
impl<P> RefUnwindSafe for HckInput<P>where
P: RefUnwindSafe,
impl<P> Send for HckInput<P>where
P: Send,
impl<P> Sync for HckInput<P>where
P: Sync,
impl<P> Unpin for HckInput<P>where
P: Unpin,
impl<P> UnwindSafe for HckInput<P>where
P: UnwindSafe,
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