pub enum InvokeSurface {
Function {
head_range: TextRange,
args: Vec<Expr>,
},
ShellLike {
head_range: TextRange,
words: Vec<ShellWord>,
captured: bool,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for InvokeSurface
impl Clone for InvokeSurface
Source§fn clone(&self) -> InvokeSurface
fn clone(&self) -> InvokeSurface
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 InvokeSurface
impl Debug for InvokeSurface
Source§impl PartialEq for InvokeSurface
impl PartialEq for InvokeSurface
impl Eq for InvokeSurface
impl StructuralPartialEq for InvokeSurface
Auto Trait Implementations§
impl Freeze for InvokeSurface
impl RefUnwindSafe for InvokeSurface
impl Send for InvokeSurface
impl Sync for InvokeSurface
impl Unpin for InvokeSurface
impl UnsafeUnpin for InvokeSurface
impl UnwindSafe for InvokeSurface
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