pub enum DecompileError {
InvalidArguments,
EncodeError(EncodeError),
DecodeError(DecodeError),
FormattingError(Error),
ValueConversionError(RustToManifestValueError),
}
Variants§
InvalidArguments
EncodeError(EncodeError)
DecodeError(DecodeError)
FormattingError(Error)
ValueConversionError(RustToManifestValueError)
Trait Implementations§
Source§impl Clone for DecompileError
impl Clone for DecompileError
Source§fn clone(&self) -> DecompileError
fn clone(&self) -> DecompileError
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 DecompileError
impl Debug for DecompileError
Source§impl From<DecodeError> for DecompileError
impl From<DecodeError> for DecompileError
Source§fn from(error: DecodeError) -> Self
fn from(error: DecodeError) -> Self
Converts to this type from the input type.
Source§impl From<DecompileError> for DumpManifestError
impl From<DecompileError> for DumpManifestError
Source§fn from(value: DecompileError) -> Self
fn from(value: DecompileError) -> Self
Converts to this type from the input type.
Source§impl From<EncodeError> for DecompileError
impl From<EncodeError> for DecompileError
Source§fn from(error: EncodeError) -> Self
fn from(error: EncodeError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for DecompileError
impl From<Error> for DecompileError
Source§impl From<RustToManifestValueError> for DecompileError
impl From<RustToManifestValueError> for DecompileError
Source§fn from(error: RustToManifestValueError) -> Self
fn from(error: RustToManifestValueError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecompileError
impl RefUnwindSafe for DecompileError
impl Send for DecompileError
impl Sync for DecompileError
impl Unpin for DecompileError
impl UnwindSafe for DecompileError
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