pub struct Actions<T>(/* private fields */);Expand description
queue of Action
Implementations§
Source§impl<T> Actions<T>
impl<T> Actions<T>
pub fn add_all(&mut self, items: Vec<T>)
pub fn push(&mut self, action: T)
pub fn push_once(&mut self, action: T)where
T: PartialEq,
pub fn pop_front(&mut self) -> Option<T>
pub fn count(&self) -> usize
pub fn iter<'a>(&'a self) -> Iter<'a, T>
pub fn into_iter(self) -> IntoIter<T>
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Actions<T>
impl<T> RefUnwindSafe for Actions<T>where
T: RefUnwindSafe,
impl<T> Send for Actions<T>where
T: Send,
impl<T> Sync for Actions<T>where
T: Sync,
impl<T> Unpin for Actions<T>where
T: Unpin,
impl<T> UnsafeUnpin for Actions<T>
impl<T> UnwindSafe for Actions<T>where
T: UnwindSafe,
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