pub enum AtomicCellError {
TypeTooLarge,
OutOfMemory,
}Expand description
Ошибки создания атомарной ячейки
Variants§
TypeTooLarge
Тип слишком большой для атомарной ячейки
OutOfMemory
Недостаточно памяти (крайне редко)
Trait Implementations§
Source§impl Clone for AtomicCellError
impl Clone for AtomicCellError
Source§fn clone(&self) -> AtomicCellError
fn clone(&self) -> AtomicCellError
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 AtomicCellError
impl Debug for AtomicCellError
Source§impl Display for AtomicCellError
impl Display for AtomicCellError
Source§impl Error for AtomicCellError
impl Error for AtomicCellError
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 AtomicCellError
impl PartialEq for AtomicCellError
impl Copy for AtomicCellError
impl Eq for AtomicCellError
impl StructuralPartialEq for AtomicCellError
Auto Trait Implementations§
impl Freeze for AtomicCellError
impl RefUnwindSafe for AtomicCellError
impl Send for AtomicCellError
impl Sync for AtomicCellError
impl Unpin for AtomicCellError
impl UnsafeUnpin for AtomicCellError
impl UnwindSafe for AtomicCellError
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