Struct concurrent_queue::ForcePushError
source · 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 copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
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: Debug> Error for ForcePushError<T>
impl<T: Debug> Error for ForcePushError<T>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)