Struct amazon_sp_feeds::models::get_feeds_response::GetFeedsResponse
source · [−]pub struct GetFeedsResponse {
pub payload: Option<Vec<Feed>>,
pub next_token: Option<String>,
pub errors: Option<Vec<Error>>,
}Expand description
GetFeedsResponse : Response schema.
Fields
payload: Option<Vec<Feed>>next_token: Option<String>Returned when the number of results exceeds pageSize. To get the next page of results, call the getFeeds operation with this token as the only parameter.
errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations
sourceimpl GetFeedsResponse
impl GetFeedsResponse
sourcepub fn new() -> GetFeedsResponse
pub fn new() -> GetFeedsResponse
Response schema.
Trait Implementations
sourceimpl Clone for GetFeedsResponse
impl Clone for GetFeedsResponse
sourcefn clone(&self) -> GetFeedsResponse
fn clone(&self) -> GetFeedsResponse
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 GetFeedsResponse
impl Debug for GetFeedsResponse
sourceimpl Default for GetFeedsResponse
impl Default for GetFeedsResponse
sourcefn default() -> GetFeedsResponse
fn default() -> GetFeedsResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for GetFeedsResponse
impl<'de> Deserialize<'de> for GetFeedsResponse
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<GetFeedsResponse> for GetFeedsResponse
impl PartialEq<GetFeedsResponse> for GetFeedsResponse
sourcefn eq(&self, other: &GetFeedsResponse) -> bool
fn eq(&self, other: &GetFeedsResponse) -> bool
sourceimpl Serialize for GetFeedsResponse
impl Serialize for GetFeedsResponse
impl StructuralPartialEq for GetFeedsResponse
Auto Trait Implementations
impl RefUnwindSafe for GetFeedsResponse
impl Send for GetFeedsResponse
impl Sync for GetFeedsResponse
impl Unpin for GetFeedsResponse
impl UnwindSafe for GetFeedsResponse
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