Struct amazon_sp_aplus_content::models::search_content_documents_response::SearchContentDocumentsResponse
source · [−]pub struct SearchContentDocumentsResponse {
pub warnings: Option<Vec<Error>>,
pub next_page_token: Option<String>,
pub content_metadata_records: Vec<ContentMetadataRecord>,
}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.
content_metadata_records: Vec<ContentMetadataRecord>A list of A+ Content metadata records.
Implementations
sourceimpl SearchContentDocumentsResponse
impl SearchContentDocumentsResponse
pub fn new(
content_metadata_records: Vec<ContentMetadataRecord>
) -> SearchContentDocumentsResponse
Trait Implementations
sourceimpl Clone for SearchContentDocumentsResponse
impl Clone for SearchContentDocumentsResponse
sourcefn clone(&self) -> SearchContentDocumentsResponse
fn clone(&self) -> SearchContentDocumentsResponse
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 Default for SearchContentDocumentsResponse
impl Default for SearchContentDocumentsResponse
sourcefn default() -> SearchContentDocumentsResponse
fn default() -> SearchContentDocumentsResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for SearchContentDocumentsResponse
impl<'de> Deserialize<'de> for SearchContentDocumentsResponse
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<SearchContentDocumentsResponse> for SearchContentDocumentsResponse
impl PartialEq<SearchContentDocumentsResponse> for SearchContentDocumentsResponse
sourcefn eq(&self, other: &SearchContentDocumentsResponse) -> bool
fn eq(&self, other: &SearchContentDocumentsResponse) -> bool
impl StructuralPartialEq for SearchContentDocumentsResponse
Auto Trait Implementations
impl RefUnwindSafe for SearchContentDocumentsResponse
impl Send for SearchContentDocumentsResponse
impl Sync for SearchContentDocumentsResponse
impl Unpin for SearchContentDocumentsResponse
impl UnwindSafe for SearchContentDocumentsResponse
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