pub enum IntegralError {
InvalidParameterName(String),
DuplicateTrack(String),
Parameter(ParameterError),
}Expand description
Failure while constructing or binding integral parameter tracks.
Variants§
InvalidParameterName(String)
The parameter name was empty or used invalid characters.
DuplicateTrack(String)
The track tried to reuse a name already bound in the plan.
Parameter(ParameterError)
Constructing or transforming the generic parameter series failed.
Trait Implementations§
Source§impl Clone for IntegralError
impl Clone for IntegralError
Source§fn clone(&self) -> IntegralError
fn clone(&self) -> IntegralError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntegralError
impl Debug for IntegralError
Source§impl Display for IntegralError
impl Display for IntegralError
impl Eq for IntegralError
Source§impl Error for IntegralError
impl Error for IntegralError
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<ParameterError> for IntegralError
impl From<ParameterError> for IntegralError
Source§fn from(source: ParameterError) -> Self
fn from(source: ParameterError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IntegralError
impl PartialEq for IntegralError
impl StructuralPartialEq for IntegralError
Auto Trait Implementations§
impl Freeze for IntegralError
impl RefUnwindSafe for IntegralError
impl Send for IntegralError
impl Sync for IntegralError
impl Unpin for IntegralError
impl UnsafeUnpin for IntegralError
impl UnwindSafe for IntegralError
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