pub struct NameMismatch {
pub expected: String,
pub actual: String,
pub ordinal: u32,
}Expand description
Record of an export name mismatch.
Fields§
§expected: StringThe expected export name.
actual: StringThe actual export name found.
ordinal: u32Ordinal of the mismatched export.
Trait Implementations§
Source§impl Clone for NameMismatch
impl Clone for NameMismatch
Source§fn clone(&self) -> NameMismatch
fn clone(&self) -> NameMismatch
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 NameMismatch
impl Debug for NameMismatch
Source§impl PartialEq for NameMismatch
impl PartialEq for NameMismatch
impl Eq for NameMismatch
impl StructuralPartialEq for NameMismatch
Auto Trait Implementations§
impl Freeze for NameMismatch
impl RefUnwindSafe for NameMismatch
impl Send for NameMismatch
impl Sync for NameMismatch
impl Unpin for NameMismatch
impl UnsafeUnpin for NameMismatch
impl UnwindSafe for NameMismatch
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