pub struct InvalidNextToken;Expand description
Error from paginate_checked: next_token was present but is not a valid
offset token (not produced by a prior page of the same list op). AWS rejects
such tokens with InvalidNextToken (or a service-specific equivalent);
callers map this to their wire error (bug-audit 2026-05-28, 1.7).
Trait Implementations§
Source§impl Clone for InvalidNextToken
impl Clone for InvalidNextToken
Source§fn clone(&self) -> InvalidNextToken
fn clone(&self) -> InvalidNextToken
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 InvalidNextToken
Source§impl Debug for InvalidNextToken
impl Debug for InvalidNextToken
impl Eq for InvalidNextToken
Source§impl PartialEq for InvalidNextToken
impl PartialEq for InvalidNextToken
Source§fn eq(&self, other: &InvalidNextToken) -> bool
fn eq(&self, other: &InvalidNextToken) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InvalidNextToken
Auto Trait Implementations§
impl Freeze for InvalidNextToken
impl RefUnwindSafe for InvalidNextToken
impl Send for InvalidNextToken
impl Sync for InvalidNextToken
impl Unpin for InvalidNextToken
impl UnsafeUnpin for InvalidNextToken
impl UnwindSafe for InvalidNextToken
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