pub struct ArityMismatch {
pub caller_entity: String,
pub callee_entity: String,
pub expected_min: usize,
pub expected_max: usize,
pub actual_args: usize,
pub file_path: String,
pub line: usize,
pub is_variadic: bool,
}Expand description
Arity mismatch found across the dependency graph.
Fields§
§caller_entity: String§callee_entity: String§expected_min: usize§expected_max: usize§actual_args: usize§file_path: String§line: usize§is_variadic: boolTrait Implementations§
Source§impl Clone for ArityMismatch
impl Clone for ArityMismatch
Source§fn clone(&self) -> ArityMismatch
fn clone(&self) -> ArityMismatch
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 moreAuto Trait Implementations§
impl Freeze for ArityMismatch
impl RefUnwindSafe for ArityMismatch
impl Send for ArityMismatch
impl Sync for ArityMismatch
impl Unpin for ArityMismatch
impl UnsafeUnpin for ArityMismatch
impl UnwindSafe for ArityMismatch
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more