pub struct IntrinsicTypeMismatchError {
pub name: String,
pub expected: String,
pub found: String,
}Expand description
Payload for ErrorKind::IntrinsicTypeMismatch.
Fields§
§name: String§expected: String§found: StringTrait Implementations§
Source§impl Clone for IntrinsicTypeMismatchError
impl Clone for IntrinsicTypeMismatchError
Source§fn clone(&self) -> IntrinsicTypeMismatchError
fn clone(&self) -> IntrinsicTypeMismatchError
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 IntrinsicTypeMismatchError
impl Debug for IntrinsicTypeMismatchError
impl Eq for IntrinsicTypeMismatchError
impl StructuralPartialEq for IntrinsicTypeMismatchError
Auto Trait Implementations§
impl Freeze for IntrinsicTypeMismatchError
impl RefUnwindSafe for IntrinsicTypeMismatchError
impl Send for IntrinsicTypeMismatchError
impl Sync for IntrinsicTypeMismatchError
impl Unpin for IntrinsicTypeMismatchError
impl UnwindSafe for IntrinsicTypeMismatchError
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