pub struct MissingParameterError { /* private fields */ }Expand description
A required PMU parameter did not have a value.
Some dynamic events have event parameters. These need to be set to a value
before a dynamic event can be built. If they are not, then
DynamicBuilder::build will emit this error.
Implementations§
Trait Implementations§
Source§impl Clone for MissingParameterError
impl Clone for MissingParameterError
Source§fn clone(&self) -> MissingParameterError
fn clone(&self) -> MissingParameterError
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 MissingParameterError
impl Debug for MissingParameterError
Source§impl Display for MissingParameterError
impl Display for MissingParameterError
Source§impl Error for MissingParameterError
impl Error for MissingParameterError
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<MissingParameterError> for DynamicBuilderError
impl From<MissingParameterError> for DynamicBuilderError
Source§fn from(value: MissingParameterError) -> Self
fn from(value: MissingParameterError) -> Self
Converts to this type from the input type.
Source§impl From<MissingParameterError> for Error
impl From<MissingParameterError> for Error
Source§fn from(value: MissingParameterError) -> Self
fn from(value: MissingParameterError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MissingParameterError
impl RefUnwindSafe for MissingParameterError
impl Send for MissingParameterError
impl Sync for MissingParameterError
impl Unpin for MissingParameterError
impl UnwindSafe for MissingParameterError
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