pub enum ActionParam<'src> {
ParamAssignment(ParamAssignment<'src>),
ParamExpression(ParamExpression<'src>),
}
Variants§
ParamAssignment(ParamAssignment<'src>)
ParamExpression(ParamExpression<'src>)
Trait Implementations§
Source§impl<'src> Clone for ActionParam<'src>
impl<'src> Clone for ActionParam<'src>
Source§fn clone(&self) -> ActionParam<'src>
fn clone(&self) -> ActionParam<'src>
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<'src> Debug for ActionParam<'src>
impl<'src> Debug for ActionParam<'src>
Source§impl<'src> FromPest<'src> for ActionParam<'src>
impl<'src> FromPest<'src> for ActionParam<'src>
Source§impl<'src> PartialEq for ActionParam<'src>
impl<'src> PartialEq for ActionParam<'src>
impl<'src> StructuralPartialEq for ActionParam<'src>
Auto Trait Implementations§
impl<'src> Freeze for ActionParam<'src>
impl<'src> RefUnwindSafe for ActionParam<'src>
impl<'src> Send for ActionParam<'src>
impl<'src> Sync for ActionParam<'src>
impl<'src> Unpin for ActionParam<'src>
impl<'src> UnwindSafe for ActionParam<'src>
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