pub struct PaginatedEventRuleList {
pub count: i32,
pub next: Option<Option<String>>,
pub previous: Option<Option<String>>,
pub results: Vec<EventRule>,
}Fields§
§count: i32§next: Option<Option<String>>§previous: Option<Option<String>>§results: Vec<EventRule>Implementations§
Trait Implementations§
Source§impl Clone for PaginatedEventRuleList
impl Clone for PaginatedEventRuleList
Source§fn clone(&self) -> PaginatedEventRuleList
fn clone(&self) -> PaginatedEventRuleList
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 PaginatedEventRuleList
impl Debug for PaginatedEventRuleList
Source§impl Default for PaginatedEventRuleList
impl Default for PaginatedEventRuleList
Source§fn default() -> PaginatedEventRuleList
fn default() -> PaginatedEventRuleList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedEventRuleList
impl<'de> Deserialize<'de> for PaginatedEventRuleList
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 PaginatedEventRuleList
impl PartialEq for PaginatedEventRuleList
Source§impl Serialize for PaginatedEventRuleList
impl Serialize for PaginatedEventRuleList
impl StructuralPartialEq for PaginatedEventRuleList
Auto Trait Implementations§
impl Freeze for PaginatedEventRuleList
impl RefUnwindSafe for PaginatedEventRuleList
impl Send for PaginatedEventRuleList
impl Sync for PaginatedEventRuleList
impl Unpin for PaginatedEventRuleList
impl UnwindSafe for PaginatedEventRuleList
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