pub enum ObuWriterError {
BitWriterError(BitWriterError),
UnalignedLeb128,
}
Variants§
BitWriterError(BitWriterError)
UnalignedLeb128
Trait Implementations§
Source§impl Debug for ObuWriterError
impl Debug for ObuWriterError
Source§impl Display for ObuWriterError
impl Display for ObuWriterError
Source§impl From<BitWriterError> for ObuWriterError
impl From<BitWriterError> for ObuWriterError
Source§fn from(err: BitWriterError) -> Self
fn from(err: BitWriterError) -> Self
Converts to this type from the input type.
Source§impl From<ObuWriterError> for SynthesizerError
impl From<ObuWriterError> for SynthesizerError
Source§fn from(err: ObuWriterError) -> Self
fn from(err: ObuWriterError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ObuWriterError
impl !RefUnwindSafe for ObuWriterError
impl Send for ObuWriterError
impl Sync for ObuWriterError
impl Unpin for ObuWriterError
impl !UnwindSafe for ObuWriterError
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