pub struct GroupCommand {
pub body: Vec<CompleteCommand>,
pub span: Span,
}Expand description
A brace group { compound_list ; }.
Fields§
§body: Vec<CompleteCommand>The commands inside the brace group.
span: SpanSource span.
Trait Implementations§
Source§impl Clone for GroupCommand
impl Clone for GroupCommand
Source§fn clone(&self) -> GroupCommand
fn clone(&self) -> GroupCommand
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 GroupCommand
impl Debug for GroupCommand
Source§impl PartialEq for GroupCommand
impl PartialEq for GroupCommand
Source§fn eq(&self, other: &GroupCommand) -> bool
fn eq(&self, other: &GroupCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GroupCommand
Auto Trait Implementations§
impl Freeze for GroupCommand
impl RefUnwindSafe for GroupCommand
impl Send for GroupCommand
impl Sync for GroupCommand
impl Unpin for GroupCommand
impl UnsafeUnpin for GroupCommand
impl UnwindSafe for GroupCommand
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