pub enum CliInput {
Paths(Vec<PathBuf>),
Test {
name: String,
contents: Vec<u8>,
languages: Vec<Box<str>>,
},
Stdin(Vec<u8>),
}
Variants§
Auto Trait Implementations§
impl Freeze for CliInput
impl RefUnwindSafe for CliInput
impl Send for CliInput
impl Sync for CliInput
impl Unpin for CliInput
impl UnwindSafe for CliInput
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