pub struct InterfaceMethodSignatureMismatchData {
pub type_name: String,
pub interface_name: String,
pub method_name: String,
pub expected_signature: String,
pub found_signature: String,
}Expand description
Boxed payload for ErrorKind::InterfaceMethodSignatureMismatch (ADR-0056).
Fields§
§type_name: String§interface_name: String§method_name: String§expected_signature: String§found_signature: StringTrait Implementations§
Source§impl Clone for InterfaceMethodSignatureMismatchData
impl Clone for InterfaceMethodSignatureMismatchData
Source§fn clone(&self) -> InterfaceMethodSignatureMismatchData
fn clone(&self) -> InterfaceMethodSignatureMismatchData
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 PartialEq for InterfaceMethodSignatureMismatchData
impl PartialEq for InterfaceMethodSignatureMismatchData
Source§fn eq(&self, other: &InterfaceMethodSignatureMismatchData) -> bool
fn eq(&self, other: &InterfaceMethodSignatureMismatchData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InterfaceMethodSignatureMismatchData
impl StructuralPartialEq for InterfaceMethodSignatureMismatchData
Auto Trait Implementations§
impl Freeze for InterfaceMethodSignatureMismatchData
impl RefUnwindSafe for InterfaceMethodSignatureMismatchData
impl Send for InterfaceMethodSignatureMismatchData
impl Sync for InterfaceMethodSignatureMismatchData
impl Unpin for InterfaceMethodSignatureMismatchData
impl UnsafeUnpin for InterfaceMethodSignatureMismatchData
impl UnwindSafe for InterfaceMethodSignatureMismatchData
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