[][src]Struct futures_signals::signal_vec::MutableVecLockMut

pub struct MutableVecLockMut<'a, A> where
    A: 'a, 
{ /* fields omitted */ }

Implementations

impl<'a, A> MutableVecLockMut<'a, A>[src]

pub fn pop(&mut self) -> Option<A>[src]

pub fn remove(&mut self, index: usize) -> A[src]

pub fn clear(&mut self)[src]

pub fn move_from_to(&mut self, old_index: usize, new_index: usize)[src]

pub fn swap(&mut self, a: usize, b: usize)[src]

pub fn retain<F>(&mut self, f: F) where
    F: FnMut(&A) -> bool
[src]

pub fn reverse(&mut self)[src]

pub fn reserve(&mut self, additional: usize)[src]

pub fn reserve_exact(&mut self, additional: usize)[src]

pub fn shrink_to_fit(&mut self)[src]

impl<'a, A> MutableVecLockMut<'a, A> where
    A: Copy
[src]

pub fn push(&mut self, value: A)[src]

pub fn insert(&mut self, index: usize, value: A)[src]

pub fn set(&mut self, index: usize, value: A)[src]

pub fn replace(&mut self, values: Vec<A>)[src]

impl<'a, A> MutableVecLockMut<'a, A> where
    A: Clone
[src]

pub fn push_cloned(&mut self, value: A)[src]

pub fn insert_cloned(&mut self, index: usize, value: A)[src]

pub fn set_cloned(&mut self, index: usize, value: A)[src]

pub fn replace_cloned(&mut self, values: Vec<A>)[src]

impl<'a, A> MutableVecLockMut<'a, A>[src]

pub fn as_slice(&self) -> &[A][src]

pub fn capacity(&self) -> usize[src]

Trait Implementations

impl<'a, A> AsRef<[A]> for MutableVecLockMut<'a, A>[src]

impl<'a, A> AsRef<MutableVecLockMut<'a, A>> for MutableVecLockMut<'a, A>[src]

impl<'a, A> Borrow<[A]> for MutableVecLockMut<'a, A>[src]

impl<'a, A: Debug> Debug for MutableVecLockMut<'a, A> where
    A: 'a, 
[src]

impl<'a, A> Deref for MutableVecLockMut<'a, A>[src]

type Target = [A]

The resulting type after dereferencing.

impl<'a, A> Eq for MutableVecLockMut<'a, A> where
    A: Eq
[src]

impl<'a, A> Hash for MutableVecLockMut<'a, A> where
    A: Hash
[src]

impl<'a, A, I> Index<I> for MutableVecLockMut<'a, A> where
    I: SliceIndex<[A]>, 
[src]

type Output = I::Output

The returned type after indexing.

impl<'a, A> Ord for MutableVecLockMut<'a, A> where
    A: Ord
[src]

impl<'a, 'b, A, B> PartialEq<&'b [B]> for MutableVecLockMut<'a, A> where
    A: PartialEq<B>, 
[src]

impl<'a, 'b, A, B> PartialEq<MutableVecLockMut<'b, B>> for MutableVecLockMut<'a, A> where
    A: PartialEq<B>, 
[src]

impl<'a, A> PartialOrd<MutableVecLockMut<'a, A>> for MutableVecLockMut<'a, A> where
    A: PartialOrd
[src]

Auto Trait Implementations

impl<'a, A> RefUnwindSafe for MutableVecLockMut<'a, A>

impl<'a, A> !Send for MutableVecLockMut<'a, A>

impl<'a, A> Sync for MutableVecLockMut<'a, A> where
    A: Send + Sync

impl<'a, A> Unpin for MutableVecLockMut<'a, A>

impl<'a, A> UnwindSafe for MutableVecLockMut<'a, A>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.