pub struct ListActiveViolationsResponse {
pub active_violations: Option<Vec<ActiveViolation>>,
pub next_token: Option<String>,
}Fields§
§active_violations: Option<Vec<ActiveViolation>>The list of active violations.
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.
Trait Implementations§
Source§impl Clone for ListActiveViolationsResponse
impl Clone for ListActiveViolationsResponse
Source§fn clone(&self) -> ListActiveViolationsResponse
fn clone(&self) -> ListActiveViolationsResponse
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 ListActiveViolationsResponse
impl Debug for ListActiveViolationsResponse
Source§impl Default for ListActiveViolationsResponse
impl Default for ListActiveViolationsResponse
Source§fn default() -> ListActiveViolationsResponse
fn default() -> ListActiveViolationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListActiveViolationsResponse
impl<'de> Deserialize<'de> for ListActiveViolationsResponse
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 ListActiveViolationsResponse
impl PartialEq for ListActiveViolationsResponse
Source§fn eq(&self, other: &ListActiveViolationsResponse) -> bool
fn eq(&self, other: &ListActiveViolationsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListActiveViolationsResponse
Auto Trait Implementations§
impl Freeze for ListActiveViolationsResponse
impl RefUnwindSafe for ListActiveViolationsResponse
impl Send for ListActiveViolationsResponse
impl Sync for ListActiveViolationsResponse
impl Unpin for ListActiveViolationsResponse
impl UnwindSafe for ListActiveViolationsResponse
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