pub struct CompoundList(pub Vec<CompoundListItem>);
Expand description
A sequence of commands.
Tuple Fields§
§0: Vec<CompoundListItem>
Trait Implementations§
Source§impl Clone for CompoundList
impl Clone for CompoundList
Source§fn clone(&self) -> CompoundList
fn clone(&self) -> CompoundList
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 CompoundList
impl Debug for CompoundList
Auto Trait Implementations§
impl Freeze for CompoundList
impl RefUnwindSafe for CompoundList
impl Send for CompoundList
impl Sync for CompoundList
impl Unpin for CompoundList
impl UnwindSafe for CompoundList
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