pub enum FixtureKind {
Success,
Pagination,
Action,
RateLimit,
Error,
}Expand description
Fixture response category.
Variants§
Success
Successful response without additional metadata.
Pagination
Successful paginated response.
Action
Action polling response.
RateLimit
Rate-limit response.
Error
Client or server error response.
Trait Implementations§
Source§impl Clone for FixtureKind
impl Clone for FixtureKind
Source§fn clone(&self) -> FixtureKind
fn clone(&self) -> FixtureKind
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 FixtureKind
Source§impl Debug for FixtureKind
impl Debug for FixtureKind
impl Eq for FixtureKind
Source§impl Hash for FixtureKind
impl Hash for FixtureKind
Source§impl Ord for FixtureKind
impl Ord for FixtureKind
Source§fn cmp(&self, other: &FixtureKind) -> Ordering
fn cmp(&self, other: &FixtureKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FixtureKind
impl PartialEq for FixtureKind
Source§impl PartialOrd for FixtureKind
impl PartialOrd for FixtureKind
impl StructuralPartialEq for FixtureKind
Auto Trait Implementations§
impl Freeze for FixtureKind
impl RefUnwindSafe for FixtureKind
impl Send for FixtureKind
impl Sync for FixtureKind
impl Unpin for FixtureKind
impl UnsafeUnpin for FixtureKind
impl UnwindSafe for FixtureKind
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