pub enum PromptDelivery {
Stdin,
PositionalArgument,
FlagValue(String),
}Variants§
Trait Implementations§
Source§impl Clone for PromptDelivery
impl Clone for PromptDelivery
Source§fn clone(&self) -> PromptDelivery
fn clone(&self) -> PromptDelivery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PromptDelivery
impl Debug for PromptDelivery
impl Eq for PromptDelivery
Source§impl PartialEq for PromptDelivery
impl PartialEq for PromptDelivery
Source§fn eq(&self, other: &PromptDelivery) -> bool
fn eq(&self, other: &PromptDelivery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PromptDelivery
Auto Trait Implementations§
impl Freeze for PromptDelivery
impl RefUnwindSafe for PromptDelivery
impl Send for PromptDelivery
impl Sync for PromptDelivery
impl Unpin for PromptDelivery
impl UnsafeUnpin for PromptDelivery
impl UnwindSafe for PromptDelivery
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