pub enum TemporalIndexError {
Invalid {
message: &'static str,
},
UnknownVariable {
id: VariableId,
},
}Expand description
Errors from temporal indexing.
Variants§
Invalid
Invalid constructor arguments.
UnknownVariable
Variable id outside the indexer.
Fields
§
id: VariableIdVariable.
Trait Implementations§
Source§impl Clone for TemporalIndexError
impl Clone for TemporalIndexError
Source§fn clone(&self) -> TemporalIndexError
fn clone(&self) -> TemporalIndexError
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 TemporalIndexError
impl Debug for TemporalIndexError
Source§impl Display for TemporalIndexError
impl Display for TemporalIndexError
impl Eq for TemporalIndexError
Source§impl Error for TemporalIndexError
impl Error for TemporalIndexError
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 PartialEq for TemporalIndexError
impl PartialEq for TemporalIndexError
impl StructuralPartialEq for TemporalIndexError
Auto Trait Implementations§
impl Freeze for TemporalIndexError
impl RefUnwindSafe for TemporalIndexError
impl Send for TemporalIndexError
impl Sync for TemporalIndexError
impl Unpin for TemporalIndexError
impl UnsafeUnpin for TemporalIndexError
impl UnwindSafe for TemporalIndexError
Blanket Implementations§
impl<T> Allocation for T
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