pub enum ContextOutput {
List,
Bundle,
Json,
}Variants§
List
Print list of selected files with stats.
Bundle
Concatenate file contents into a single bundle.
Json
Output JSON receipt with selection details.
Trait Implementations§
Source§impl Clone for ContextOutput
impl Clone for ContextOutput
Source§fn clone(&self) -> ContextOutput
fn clone(&self) -> ContextOutput
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 ContextOutput
impl Debug for ContextOutput
Source§impl Default for ContextOutput
impl Default for ContextOutput
Source§fn default() -> ContextOutput
fn default() -> ContextOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContextOutput
impl<'de> Deserialize<'de> for ContextOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContextOutput
impl PartialEq for ContextOutput
Source§impl Serialize for ContextOutput
impl Serialize for ContextOutput
Source§impl ValueEnum for ContextOutput
impl ValueEnum for ContextOutput
impl Copy for ContextOutput
impl Eq for ContextOutput
impl StructuralPartialEq for ContextOutput
Auto Trait Implementations§
impl Freeze for ContextOutput
impl RefUnwindSafe for ContextOutput
impl Send for ContextOutput
impl Sync for ContextOutput
impl Unpin for ContextOutput
impl UnsafeUnpin for ContextOutput
impl UnwindSafe for ContextOutput
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