pub enum ConfigSetParameterError {
Immutable,
AssignmentFailed(ParameterAssignmentError),
InvalidType {
expected: ParameterDataType,
actual: ParameterDataType,
},
}Variants§
Trait Implementations§
Source§impl Debug for ConfigSetParameterError
impl Debug for ConfigSetParameterError
Source§impl Display for ConfigSetParameterError
impl Display for ConfigSetParameterError
Source§impl Error for ConfigSetParameterError
impl Error for ConfigSetParameterError
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 ConfigSetParameterError
impl PartialEq for ConfigSetParameterError
impl StructuralPartialEq for ConfigSetParameterError
Auto Trait Implementations§
impl Freeze for ConfigSetParameterError
impl RefUnwindSafe for ConfigSetParameterError
impl Send for ConfigSetParameterError
impl Sync for ConfigSetParameterError
impl Unpin for ConfigSetParameterError
impl UnwindSafe for ConfigSetParameterError
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