pub enum SnippetType {
Save(String),
Eval(String),
Pipe,
Plain,
}Variants§
Trait Implementations§
Source§impl Clone for SnippetType
impl Clone for SnippetType
Source§fn clone(&self) -> SnippetType
fn clone(&self) -> SnippetType
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 moreAuto Trait Implementations§
impl Freeze for SnippetType
impl RefUnwindSafe for SnippetType
impl Send for SnippetType
impl Sync for SnippetType
impl Unpin for SnippetType
impl UnwindSafe for SnippetType
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