pub struct ForcePushError<T>(pub T);
Expand description
Error that occurs when force-pushing into a full queue.
Tuple Fields§
§0: T
Implementations§
Source§impl<T> ForcePushError<T>
impl<T> ForcePushError<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Return the inner value that failed to be force-pushed.
Trait Implementations§
Source§impl<T: Clone> Clone for ForcePushError<T>
impl<T: Clone> Clone for ForcePushError<T>
Source§fn clone(&self) -> ForcePushError<T>
fn clone(&self) -> ForcePushError<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug> Debug for ForcePushError<T>
impl<T: Debug> Debug for ForcePushError<T>
Source§impl<T> Display for ForcePushError<T>
impl<T> Display for ForcePushError<T>
Source§impl<T: PartialEq> PartialEq for ForcePushError<T>
impl<T: PartialEq> PartialEq for ForcePushError<T>
impl<T: Copy> Copy for ForcePushError<T>
impl<T: Eq> Eq for ForcePushError<T>
impl<T> StructuralPartialEq for ForcePushError<T>
Auto Trait Implementations§
impl<T> Freeze for ForcePushError<T>where
T: Freeze,
impl<T> RefUnwindSafe for ForcePushError<T>where
T: RefUnwindSafe,
impl<T> Send for ForcePushError<T>where
T: Send,
impl<T> Sync for ForcePushError<T>where
T: Sync,
impl<T> Unpin for ForcePushError<T>where
T: Unpin,
impl<T> UnwindSafe for ForcePushError<T>where
T: 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