pub enum ActionUsageBody {
Semicolon,
Brace {
elements: Vec<Node<ActionUsageBodyElement>>,
},
}Expand description
Body of an action usage: ; or { ActionUsageBodyElement* }.
Variants§
Trait Implementations§
Source§impl Clone for ActionUsageBody
impl Clone for ActionUsageBody
Source§fn clone(&self) -> ActionUsageBody
fn clone(&self) -> ActionUsageBody
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 ActionUsageBody
impl Debug for ActionUsageBody
Source§impl PartialEq for ActionUsageBody
impl PartialEq for ActionUsageBody
Source§fn eq(&self, other: &ActionUsageBody) -> bool
fn eq(&self, other: &ActionUsageBody) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ActionUsageBody
impl StructuralPartialEq for ActionUsageBody
Auto Trait Implementations§
impl Freeze for ActionUsageBody
impl RefUnwindSafe for ActionUsageBody
impl Send for ActionUsageBody
impl Sync for ActionUsageBody
impl Unpin for ActionUsageBody
impl UnsafeUnpin for ActionUsageBody
impl UnwindSafe for ActionUsageBody
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