pub enum TryReserveError {
NotUnique,
Unsupported,
AllocError,
CapacityOverflow,
}
Expand description
Error which can occur when trying to reserve additional capacity for a mutable buffer.
Variants§
NotUnique
The buffer reference is not unique.
Occurs when the same buffer is referenced by multiple ArcSliceMut
s.
Unsupported
The buffer doesn’t support reservation.
AllocError
The memory allocator returned an error.
CapacityOverflow
The required capacity exceeds the buffer maximum (usually isize::MAX bytes).
Trait Implementations§
Source§impl Clone for TryReserveError
impl Clone for TryReserveError
Source§fn clone(&self) -> TryReserveError
fn clone(&self) -> TryReserveError
Returns a duplicate 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 Debug for TryReserveError
impl Debug for TryReserveError
Source§impl Display for TryReserveError
impl Display for TryReserveError
Source§impl Error for TryReserveError
Available on crate feature std
only.
impl Error for TryReserveError
Available on crate feature
std
only.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 From<AllocError> for TryReserveError
impl From<AllocError> for TryReserveError
Source§fn from(_: AllocError) -> Self
fn from(_: AllocError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TryReserveError
impl PartialEq for TryReserveError
impl Eq for TryReserveError
impl StructuralPartialEq for TryReserveError
Auto Trait Implementations§
impl Freeze for TryReserveError
impl RefUnwindSafe for TryReserveError
impl Send for TryReserveError
impl Sync for TryReserveError
impl Unpin for TryReserveError
impl UnwindSafe for TryReserveError
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more