Searched refs:PushError (Results 1 – 2 of 2) sorted by relevance
9 pub struct PushError<T>(pub T); struct11 impl<T> Debug for PushError<T> { implementation17 impl<T> From<PushError<T>> for Error {18 fn from(_: PushError<T>) -> Error { in from()
26 pub use self::errors::{InsertError, PushError, RemoveError};335 pub fn push_within_capacity(&mut self, v: T) -> Result<(), PushError<T>> { in push_within_capacity()341 Err(PushError(v)) in push_within_capacity()
Completed in 20 milliseconds