pub struct PaginationErrorResponse {
pub error: &'static str,
pub message: String,
pub details: PaginationErrorDetails,
}Expand description
Pagination error response payload.
Fields§
§error: &'static strError type identifier.
message: StringHuman-readable error message.
details: PaginationErrorDetailsStructured error details.
Trait Implementations§
Source§impl Clone for PaginationErrorResponse
impl Clone for PaginationErrorResponse
Source§fn clone(&self) -> PaginationErrorResponse
fn clone(&self) -> PaginationErrorResponse
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 moreSource§impl Debug for PaginationErrorResponse
impl Debug for PaginationErrorResponse
Auto Trait Implementations§
impl Freeze for PaginationErrorResponse
impl RefUnwindSafe for PaginationErrorResponse
impl Send for PaginationErrorResponse
impl Sync for PaginationErrorResponse
impl Unpin for PaginationErrorResponse
impl UnsafeUnpin for PaginationErrorResponse
impl UnwindSafe for PaginationErrorResponse
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