pub struct IncompatibleRustc {
pub expected: &'static str,
pub actual: String,
}Available on crate feature
module only.Expand description
Describes an incompatible RUSTC version when attempting to load Rust based modules.
Fields§
§expected: &'static strThe expected RUSTC version.
actual: StringThe RUSTC version stored in the module which failed to load.
Trait Implementations§
Source§impl Clone for IncompatibleRustc
impl Clone for IncompatibleRustc
Source§fn clone(&self) -> IncompatibleRustc
fn clone(&self) -> IncompatibleRustc
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 IncompatibleRustc
impl Debug for IncompatibleRustc
Source§impl Display for IncompatibleRustc
impl Display for IncompatibleRustc
Source§impl PartialEq for IncompatibleRustc
impl PartialEq for IncompatibleRustc
impl Eq for IncompatibleRustc
impl StructuralPartialEq for IncompatibleRustc
Auto Trait Implementations§
impl Freeze for IncompatibleRustc
impl RefUnwindSafe for IncompatibleRustc
impl Send for IncompatibleRustc
impl Sync for IncompatibleRustc
impl Unpin for IncompatibleRustc
impl UnwindSafe for IncompatibleRustc
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