pub enum FixtureMetadataError {
PaginationZero,
PageAfterLast,
InvalidLastPage,
RemainingExceedsLimit,
RateLimitZero,
InvalidProgress,
}Expand description
Fixture metadata validation error.
Variants§
PaginationZero
Pagination page and page-size values must be nonzero.
PageAfterLast
Current page must not exceed the last page.
InvalidLastPage
Last page does not match total entries and page size.
RemainingExceedsLimit
Remaining requests must not exceed the rate limit.
RateLimitZero
Rate limits must be nonzero.
InvalidProgress
Action progress must be in 0..=100.
Trait Implementations§
Source§impl Clone for FixtureMetadataError
impl Clone for FixtureMetadataError
Source§fn clone(&self) -> FixtureMetadataError
fn clone(&self) -> FixtureMetadataError
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 FixtureMetadataError
Source§impl Debug for FixtureMetadataError
impl Debug for FixtureMetadataError
impl Eq for FixtureMetadataError
Source§impl PartialEq for FixtureMetadataError
impl PartialEq for FixtureMetadataError
impl StructuralPartialEq for FixtureMetadataError
Auto Trait Implementations§
impl Freeze for FixtureMetadataError
impl RefUnwindSafe for FixtureMetadataError
impl Send for FixtureMetadataError
impl Sync for FixtureMetadataError
impl Unpin for FixtureMetadataError
impl UnsafeUnpin for FixtureMetadataError
impl UnwindSafe for FixtureMetadataError
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