pub enum ActionOr {
Action(Vec<Box<dyn Action>>),
NotAction(Vec<Box<dyn Action>>),
}Available on crate feature
iam only.Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ActionOr
impl !RefUnwindSafe for ActionOr
impl !Send for ActionOr
impl !Sync for ActionOr
impl Unpin for ActionOr
impl !UnwindSafe for ActionOr
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