#[non_exhaustive]pub enum RunEventQueryError {
InvalidPageSize {
value: usize,
},
}Expand description
Invalid operational event query.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidPageSize
The requested page size is outside the supported bounds.
Trait Implementations§
Source§impl Clone for RunEventQueryError
impl Clone for RunEventQueryError
Source§fn clone(&self) -> RunEventQueryError
fn clone(&self) -> RunEventQueryError
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 moreimpl Copy for RunEventQueryError
Source§impl Debug for RunEventQueryError
impl Debug for RunEventQueryError
Source§impl Display for RunEventQueryError
impl Display for RunEventQueryError
impl Eq for RunEventQueryError
Source§impl Error for RunEventQueryError
impl Error for RunEventQueryError
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 RunEventQueryError
impl PartialEq for RunEventQueryError
impl StructuralPartialEq for RunEventQueryError
Auto Trait Implementations§
impl Freeze for RunEventQueryError
impl RefUnwindSafe for RunEventQueryError
impl Send for RunEventQueryError
impl Sync for RunEventQueryError
impl Unpin for RunEventQueryError
impl UnsafeUnpin for RunEventQueryError
impl UnwindSafe for RunEventQueryError
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