Struct amazon_sp_aplus_content::models::aplus_paginated_response::AplusPaginatedResponse
source · [−]pub struct AplusPaginatedResponse {
pub warnings: Option<Vec<Error>>,
pub next_page_token: Option<String>,
}Expand description
AplusPaginatedResponse : The base response data for paginated A+ Content operations. Individual operations may extend this with additional data. If nextPageToken is not returned, there are no more pages to return.
Fields
warnings: Option<Vec<Error>>A set of messages to the user, such as warnings or comments.
next_page_token: Option<String>A page token that is returned when the results of the call exceed the page size. To get another page of results, call the operation again, passing in this value with the pageToken parameter.
Implementations
sourceimpl AplusPaginatedResponse
impl AplusPaginatedResponse
sourcepub fn new() -> AplusPaginatedResponse
pub fn new() -> AplusPaginatedResponse
The base response data for paginated A+ Content operations. Individual operations may extend this with additional data. If nextPageToken is not returned, there are no more pages to return.
Trait Implementations
sourceimpl Clone for AplusPaginatedResponse
impl Clone for AplusPaginatedResponse
sourcefn clone(&self) -> AplusPaginatedResponse
fn clone(&self) -> AplusPaginatedResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AplusPaginatedResponse
impl Debug for AplusPaginatedResponse
sourceimpl Default for AplusPaginatedResponse
impl Default for AplusPaginatedResponse
sourcefn default() -> AplusPaginatedResponse
fn default() -> AplusPaginatedResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AplusPaginatedResponse
impl<'de> Deserialize<'de> for AplusPaginatedResponse
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<AplusPaginatedResponse> for AplusPaginatedResponse
impl PartialEq<AplusPaginatedResponse> for AplusPaginatedResponse
sourcefn eq(&self, other: &AplusPaginatedResponse) -> bool
fn eq(&self, other: &AplusPaginatedResponse) -> bool
sourceimpl Serialize for AplusPaginatedResponse
impl Serialize for AplusPaginatedResponse
impl StructuralPartialEq for AplusPaginatedResponse
Auto Trait Implementations
impl RefUnwindSafe for AplusPaginatedResponse
impl Send for AplusPaginatedResponse
impl Sync for AplusPaginatedResponse
impl Unpin for AplusPaginatedResponse
impl UnwindSafe for AplusPaginatedResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more