pub enum PushIterError<E> {
TooManyValues(i32),
ValuePushError(E),
}
Variants§
Implementations§
Source§impl<E> PushIterError<E>
impl<E> PushIterError<E>
pub fn map<F, R>(self, f: F) -> PushIterError<R>where
F: FnOnce(E) -> R,
Trait Implementations§
Source§impl<E: Debug> Debug for PushIterError<E>
impl<E: Debug> Debug for PushIterError<E>
Source§impl<E> Display for PushIterError<E>where
E: Display,
impl<E> Display for PushIterError<E>where
E: Display,
Source§impl<K, V> From<PushIterError<TuplePushError<K, TuplePushError<V, Void>>>> for Void
impl<K, V> From<PushIterError<TuplePushError<K, TuplePushError<V, Void>>>> for Void
Source§fn from(_: PushIterError<TuplePushError<K, TuplePushError<V, Void>>>) -> Self
fn from(_: PushIterError<TuplePushError<K, TuplePushError<V, Void>>>) -> Self
Converts to this type from the input type.
Source§impl<T> From<PushIterError<TuplePushError<T, Void>>> for Void
impl<T> From<PushIterError<TuplePushError<T, Void>>> for Void
Source§fn from(_: PushIterError<TuplePushError<T, Void>>) -> Self
fn from(_: PushIterError<TuplePushError<T, Void>>) -> Self
Converts to this type from the input type.
Source§impl From<PushIterError<Void>> for Void
impl From<PushIterError<Void>> for Void
Source§fn from(_: PushIterError<Void>) -> Self
fn from(_: PushIterError<Void>) -> Self
Converts to this type from the input type.
Source§impl<E: PartialEq> PartialEq for PushIterError<E>
impl<E: PartialEq> PartialEq for PushIterError<E>
impl<E: Eq> Eq for PushIterError<E>
impl<E> StructuralPartialEq for PushIterError<E>
Auto Trait Implementations§
impl<E> Freeze for PushIterError<E>where
E: Freeze,
impl<E> RefUnwindSafe for PushIterError<E>where
E: RefUnwindSafe,
impl<E> Send for PushIterError<E>where
E: Send,
impl<E> Sync for PushIterError<E>where
E: Sync,
impl<E> Unpin for PushIterError<E>where
E: Unpin,
impl<E> UnwindSafe for PushIterError<E>where
E: 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