#[non_exhaustive]pub struct StorageFullError;Expand description
Returned when an internal pool is at capacity.
Trait Implementations§
Source§impl Clone for StorageFullError
impl Clone for StorageFullError
Source§fn clone(&self) -> StorageFullError
fn clone(&self) -> StorageFullError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StorageFullError
impl Debug for StorageFullError
Source§impl Display for StorageFullError
impl Display for StorageFullError
impl Eq for StorageFullError
Source§impl Error for StorageFullError
impl Error for StorageFullError
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<StorageFullError> for RegisterServiceError
impl From<StorageFullError> for RegisterServiceError
Source§fn from(source: StorageFullError) -> Self
fn from(source: StorageFullError) -> Self
Converts to this type from the input type.
Source§impl From<StorageFullError> for StartQueryError
impl From<StorageFullError> for StartQueryError
Source§fn from(source: StorageFullError) -> Self
fn from(source: StorageFullError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StorageFullError
impl PartialEq for StorageFullError
Source§fn eq(&self, other: &StorageFullError) -> bool
fn eq(&self, other: &StorageFullError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StorageFullError
Auto Trait Implementations§
impl Freeze for StorageFullError
impl RefUnwindSafe for StorageFullError
impl Send for StorageFullError
impl Sync for StorageFullError
impl Unpin for StorageFullError
impl UnsafeUnpin for StorageFullError
impl UnwindSafe for StorageFullError
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