pub struct ChunksMutNotSupported;Expand description
Error type returned when try_chunks_mut
is not supported by a type.
This error is typically returned by derived subslice types which cannot provide mutable chunks due to their implementation constraints.
Trait Implementations§
Source§impl Clone for ChunksMutNotSupported
impl Clone for ChunksMutNotSupported
Source§fn clone(&self) -> ChunksMutNotSupported
fn clone(&self) -> ChunksMutNotSupported
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 ChunksMutNotSupported
impl Debug for ChunksMutNotSupported
Source§impl Display for ChunksMutNotSupported
impl Display for ChunksMutNotSupported
Source§impl Error for ChunksMutNotSupported
Available on crate feature std only.
impl Error for ChunksMutNotSupported
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 PartialEq for ChunksMutNotSupported
impl PartialEq for ChunksMutNotSupported
impl Copy for ChunksMutNotSupported
impl Eq for ChunksMutNotSupported
impl StructuralPartialEq for ChunksMutNotSupported
Auto Trait Implementations§
impl Freeze for ChunksMutNotSupported
impl RefUnwindSafe for ChunksMutNotSupported
impl Send for ChunksMutNotSupported
impl Sync for ChunksMutNotSupported
impl Unpin for ChunksMutNotSupported
impl UnwindSafe for ChunksMutNotSupported
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