pub struct InterfaceMethodMissingData {
pub type_name: String,
pub interface_name: String,
pub method_name: String,
pub expected_signature: String,
}Expand description
Boxed payload for ErrorKind::InterfaceMethodMissing (ADR-0056).
Fields§
§type_name: String§interface_name: String§method_name: String§expected_signature: StringTrait Implementations§
Source§impl Clone for InterfaceMethodMissingData
impl Clone for InterfaceMethodMissingData
Source§fn clone(&self) -> InterfaceMethodMissingData
fn clone(&self) -> InterfaceMethodMissingData
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 InterfaceMethodMissingData
impl Debug for InterfaceMethodMissingData
impl Eq for InterfaceMethodMissingData
impl StructuralPartialEq for InterfaceMethodMissingData
Auto Trait Implementations§
impl Freeze for InterfaceMethodMissingData
impl RefUnwindSafe for InterfaceMethodMissingData
impl Send for InterfaceMethodMissingData
impl Sync for InterfaceMethodMissingData
impl Unpin for InterfaceMethodMissingData
impl UnsafeUnpin for InterfaceMethodMissingData
impl UnwindSafe for InterfaceMethodMissingData
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