pub enum ParameterAssignmentError {
InvalidLength {
expected: usize,
actual: usize,
},
}Variants§
Trait Implementations§
Source§impl Debug for ParameterAssignmentError
impl Debug for ParameterAssignmentError
Source§impl Display for ParameterAssignmentError
impl Display for ParameterAssignmentError
Source§impl Error for ParameterAssignmentError
impl Error for ParameterAssignmentError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ParameterAssignmentError> for ConfigSetParameterError
impl From<ParameterAssignmentError> for ConfigSetParameterError
Source§fn from(other: ParameterAssignmentError) -> Self
fn from(other: ParameterAssignmentError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParameterAssignmentError
impl PartialEq for ParameterAssignmentError
impl StructuralPartialEq for ParameterAssignmentError
Auto Trait Implementations§
impl Freeze for ParameterAssignmentError
impl RefUnwindSafe for ParameterAssignmentError
impl Send for ParameterAssignmentError
impl Sync for ParameterAssignmentError
impl Unpin for ParameterAssignmentError
impl UnwindSafe for ParameterAssignmentError
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