pub enum BatchFileState {
InputOnly,
InputOutput,
InputError,
InputOutputError,
}
Expand description
Represents the state of batch files based on the presence of input, output, and error files.
Variants§
Trait Implementations§
Source§impl Debug for BatchFileState
impl Debug for BatchFileState
Source§impl From<&BatchFileTriple> for BatchFileState
impl From<&BatchFileTriple> for BatchFileState
Source§fn from(triple: &BatchFileTriple) -> BatchFileState
fn from(triple: &BatchFileTriple) -> BatchFileState
Determines the state of the batch files.
Source§impl PartialEq for BatchFileState
impl PartialEq for BatchFileState
impl Eq for BatchFileState
impl StructuralPartialEq for BatchFileState
Auto Trait Implementations§
impl Freeze for BatchFileState
impl RefUnwindSafe for BatchFileState
impl Send for BatchFileState
impl Sync for BatchFileState
impl Unpin for BatchFileState
impl UnwindSafe for BatchFileState
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