pub struct PaginationError {
pub field: &'static str,
pub message: String,
}Expand description
Pagination parsing error.
Fields§
§field: &'static strThe field that caused the error.
message: StringHuman-readable error message.
Implementations§
Trait Implementations§
Source§impl Clone for PaginationError
impl Clone for PaginationError
Source§fn clone(&self) -> PaginationError
fn clone(&self) -> PaginationError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PaginationError
impl RefUnwindSafe for PaginationError
impl Send for PaginationError
impl Sync for PaginationError
impl Unpin for PaginationError
impl UnsafeUnpin for PaginationError
impl UnwindSafe for PaginationError
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