pub struct ListRulesOutput {
pub rules: Vec<Rule>,
pub next_token: Option<String>,
}Expand description
Output for the ListRules operation.
Fields§
§rules: Vec<Rule>The rules that match the request.
next_token: Option<String>The token for the next page of results, if any.
Trait Implementations§
Source§impl Clone for ListRulesOutput
impl Clone for ListRulesOutput
Source§fn clone(&self) -> ListRulesOutput
fn clone(&self) -> ListRulesOutput
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 ListRulesOutput
impl Debug for ListRulesOutput
Source§impl Default for ListRulesOutput
impl Default for ListRulesOutput
Source§fn default() -> ListRulesOutput
fn default() -> ListRulesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListRulesOutput
impl<'de> Deserialize<'de> for ListRulesOutput
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
Auto Trait Implementations§
impl Freeze for ListRulesOutput
impl RefUnwindSafe for ListRulesOutput
impl Send for ListRulesOutput
impl Sync for ListRulesOutput
impl Unpin for ListRulesOutput
impl UnsafeUnpin for ListRulesOutput
impl UnwindSafe for ListRulesOutput
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