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