pub enum RibByteCodeGenerationError {
CastError(String),
AnalysedTypeConversionError(String),
PatternMatchDesugarError,
RangeSelectionDesugarError(String),
UnexpectedTypeError {
expected: TypeHint,
actual: TypeHint,
},
UnresolvedWasmComponent {
function: String,
},
UnresolvedWorkerName,
UnresolvedResourceVariable,
}Variants§
CastError(String)
AnalysedTypeConversionError(String)
PatternMatchDesugarError
RangeSelectionDesugarError(String)
UnexpectedTypeError
UnresolvedWasmComponent
UnresolvedWorkerName
UnresolvedResourceVariable
Trait Implementations§
Source§impl Clone for RibByteCodeGenerationError
impl Clone for RibByteCodeGenerationError
Source§fn clone(&self) -> RibByteCodeGenerationError
fn clone(&self) -> RibByteCodeGenerationError
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 RibByteCodeGenerationError
impl Debug for RibByteCodeGenerationError
Source§impl Display for RibByteCodeGenerationError
impl Display for RibByteCodeGenerationError
Source§impl Error for RibByteCodeGenerationError
impl Error for RibByteCodeGenerationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<RibByteCodeGenerationError> for RibCompilationError
impl From<RibByteCodeGenerationError> for RibCompilationError
Source§fn from(err: RibByteCodeGenerationError) -> Self
fn from(err: RibByteCodeGenerationError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for RibByteCodeGenerationError
Auto Trait Implementations§
impl Freeze for RibByteCodeGenerationError
impl RefUnwindSafe for RibByteCodeGenerationError
impl Send for RibByteCodeGenerationError
impl Sync for RibByteCodeGenerationError
impl Unpin for RibByteCodeGenerationError
impl UnsafeUnpin for RibByteCodeGenerationError
impl UnwindSafe for RibByteCodeGenerationError
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