pub enum WriteVertexError {
IO(Error),
TryChildrenFailed,
}Expand description
An error which might occur when calling Generator::try_write_next_vertex.
Variants§
IO(Error)
An IO error was raised by the writer.
TryChildrenFailed
The TryRamify implementation failed to determine the children for the active vertex.
Trait Implementations§
Source§impl Debug for WriteVertexError
impl Debug for WriteVertexError
Auto Trait Implementations§
impl Freeze for WriteVertexError
impl !RefUnwindSafe for WriteVertexError
impl Send for WriteVertexError
impl Sync for WriteVertexError
impl Unpin for WriteVertexError
impl !UnwindSafe for WriteVertexError
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