Searched refs:RemoveError (Results 1 – 2 of 2) sorted by relevance
27 pub struct RemoveError;29 impl fmt::Debug for RemoveError { in fmt() 35 impl From<RemoveError> for Error { in from() 37 fn from(_: RemoveError) -> Error { in from() 26 pub struct RemoveError; global() struct 28 impl fmt::Debug for RemoveError { global() implementation
29 pub use self::errors::{InsertError, PushError, RemoveError};465 pub fn remove(&mut self, i: usize) -> Result<T, RemoveError> { in remove() argument467 let value_ref = self.get(i).ok_or(RemoveError)?; in remove()