pub struct VarListPattern { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl Clone for VarListPattern
impl Clone for VarListPattern
Source§fn clone(&self) -> VarListPattern
fn clone(&self) -> VarListPattern
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 VarListPattern
impl Debug for VarListPattern
Source§impl Display for VarListPattern
impl Display for VarListPattern
Source§impl Hash for VarListPattern
impl Hash for VarListPattern
Source§impl Locational for VarListPattern
impl Locational for VarListPattern
Source§impl PartialEq for VarListPattern
impl PartialEq for VarListPattern
Source§impl Stream<VarSignature> for VarListPattern
impl Stream<VarSignature> for VarListPattern
fn payload(self) -> Vec<VarSignature>
fn ref_payload(&self) -> &Vec<VarSignature>
fn ref_mut_payload(&mut self) -> &mut Vec<VarSignature>
fn clear(&mut self)
fn len(&self) -> usize
fn size(&self) -> usize
fn is_empty(&self) -> bool
fn insert(&mut self, idx: usize, elem: T)
fn remove(&mut self, idx: usize) -> T
fn push(&mut self, elem: T)
fn append<S>(&mut self, s: &mut S)where
S: Stream<T>,
fn pop(&mut self) -> Option<T>
fn lpop(&mut self) -> Option<T>
fn get(&self, idx: usize) -> Option<&T>
fn get_mut(&mut self, idx: usize) -> Option<&mut T>
fn first(&self) -> Option<&T>
fn first_mut(&mut self) -> Option<&mut T>
fn last(&self) -> Option<&T>
fn last_mut(&mut self) -> Option<&mut T>
fn iter(&self) -> Iter<'_, T>
fn iter_mut(&mut self) -> IterMut<'_, T>
fn take_all(&mut self) -> Vec<T>
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = T>,
fn split_off(&mut self, at: usize) -> Vec<T>
Source§fn retain(&mut self, f: impl FnMut(&T) -> bool)
fn retain(&mut self, f: impl FnMut(&T) -> bool)
Remove all elements that don’t satisfy the predicate.
fn concat(self, other: Self) -> Self
impl Eq for VarListPattern
Auto Trait Implementations§
impl Freeze for VarListPattern
impl RefUnwindSafe for VarListPattern
impl Send for VarListPattern
impl Sync for VarListPattern
impl Unpin for VarListPattern
impl UnwindSafe for VarListPattern
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