pub enum GetAtomError {
NullPointer,
GetBody(GetBodyError),
}Expand description
Error that may occur when calling AtomInputPort::get_atom_body.
Variants§
NullPointer
The internal pointer points to zero.
Maybe connect_port is not implemented correctly?
GetBody(GetBodyError)
Widening the atom header failed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GetAtomError
impl RefUnwindSafe for GetAtomError
impl Send for GetAtomError
impl Sync for GetAtomError
impl Unpin for GetAtomError
impl UnwindSafe for GetAtomError
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