pub enum IrError {
InvalidRepositoryId(String),
DuplicateRepositoryId(String),
LookupFailed(String),
InvalidTypeCode(String),
}Expand description
IR error.
Variants§
InvalidRepositoryId(String)
RepositoryId is not in the format IDL:<scoped>:<version>.
DuplicateRepositoryId(String)
RepositoryId already taken.
LookupFailed(String)
Lookup name not in the repository.
InvalidTypeCode(String)
TypeCode is corrupt from wire data.
Trait Implementations§
impl Eq for IrError
impl StructuralPartialEq for IrError
Auto Trait Implementations§
impl Freeze for IrError
impl RefUnwindSafe for IrError
impl Send for IrError
impl Sync for IrError
impl Unpin for IrError
impl UnsafeUnpin for IrError
impl UnwindSafe for IrError
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