pub struct BraceGroupCommand {
pub list: CompoundList,
pub loc: TokenLocation,
}Expand description
A brace group, which groups commands together.
Fields§
§list: CompoundListList of commands
loc: TokenLocationLocation of the group
Trait Implementations§
Source§impl Clone for BraceGroupCommand
impl Clone for BraceGroupCommand
Source§fn clone(&self) -> BraceGroupCommand
fn clone(&self) -> BraceGroupCommand
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 BraceGroupCommand
impl Debug for BraceGroupCommand
Source§impl Display for BraceGroupCommand
impl Display for BraceGroupCommand
Source§impl SourceLocation for BraceGroupCommand
impl SourceLocation for BraceGroupCommand
Source§fn location(&self) -> Option<TokenLocation>
fn location(&self) -> Option<TokenLocation>
The location of the syntax item, when known
Auto Trait Implementations§
impl Freeze for BraceGroupCommand
impl RefUnwindSafe for BraceGroupCommand
impl Send for BraceGroupCommand
impl Sync for BraceGroupCommand
impl Unpin for BraceGroupCommand
impl UnwindSafe for BraceGroupCommand
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