pub enum PromptInputMode {
Prompt,
Bash,
Print,
Continue,
}Expand description
Prompt input mode
Variants§
Trait Implementations§
Source§impl Clone for PromptInputMode
impl Clone for PromptInputMode
Source§fn clone(&self) -> PromptInputMode
fn clone(&self) -> PromptInputMode
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 PromptInputMode
impl Debug for PromptInputMode
Source§impl Default for PromptInputMode
impl Default for PromptInputMode
Source§fn default() -> PromptInputMode
fn default() -> PromptInputMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PromptInputMode
impl<'de> Deserialize<'de> for PromptInputMode
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 PromptInputMode
impl PartialEq for PromptInputMode
Source§impl Serialize for PromptInputMode
impl Serialize for PromptInputMode
impl StructuralPartialEq for PromptInputMode
Auto Trait Implementations§
impl Freeze for PromptInputMode
impl RefUnwindSafe for PromptInputMode
impl Send for PromptInputMode
impl Sync for PromptInputMode
impl Unpin for PromptInputMode
impl UnsafeUnpin for PromptInputMode
impl UnwindSafe for PromptInputMode
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