pub struct ListAuditTasksResponse {
pub next_token: Option<String>,
pub tasks: Option<Vec<AuditTaskMetadata>>,
}Fields§
§next_token: Option<String>A token that can be used to retrieve the next set of results, or null if there are no additional results.
tasks: Option<Vec<AuditTaskMetadata>>The audits that were performed during the specified time period.
Trait Implementations§
Source§impl Clone for ListAuditTasksResponse
impl Clone for ListAuditTasksResponse
Source§fn clone(&self) -> ListAuditTasksResponse
fn clone(&self) -> ListAuditTasksResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListAuditTasksResponse
impl Debug for ListAuditTasksResponse
Source§impl Default for ListAuditTasksResponse
impl Default for ListAuditTasksResponse
Source§fn default() -> ListAuditTasksResponse
fn default() -> ListAuditTasksResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAuditTasksResponse
impl<'de> Deserialize<'de> for ListAuditTasksResponse
Source§fn 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
Source§impl PartialEq for ListAuditTasksResponse
impl PartialEq for ListAuditTasksResponse
impl StructuralPartialEq for ListAuditTasksResponse
Auto Trait Implementations§
impl Freeze for ListAuditTasksResponse
impl RefUnwindSafe for ListAuditTasksResponse
impl Send for ListAuditTasksResponse
impl Sync for ListAuditTasksResponse
impl Unpin for ListAuditTasksResponse
impl UnwindSafe for ListAuditTasksResponse
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