pub enum WriteAtomError {
NullPointer,
InsufficientSpace,
}Expand description
Errors that may occur when calling
AtomOutputPort::write_atom_body
Variants§
NullPointer
The internal pointer points to zero.
Maybe connect_port is not implemented correctly?
InsufficientSpace
The host hasn’t allocated enough memory to initialize the atom.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WriteAtomError
impl RefUnwindSafe for WriteAtomError
impl Send for WriteAtomError
impl Sync for WriteAtomError
impl Unpin for WriteAtomError
impl UnwindSafe for WriteAtomError
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