pub struct PaginatedExpressionPolicyList {
pub pagination: Box<Pagination>,
pub results: Vec<ExpressionPolicy>,
}
Fields§
§pagination: Box<Pagination>
§results: Vec<ExpressionPolicy>
Implementations§
Source§impl PaginatedExpressionPolicyList
impl PaginatedExpressionPolicyList
pub fn new( pagination: Pagination, results: Vec<ExpressionPolicy>, ) -> PaginatedExpressionPolicyList
Trait Implementations§
Source§impl Clone for PaginatedExpressionPolicyList
impl Clone for PaginatedExpressionPolicyList
Source§fn clone(&self) -> PaginatedExpressionPolicyList
fn clone(&self) -> PaginatedExpressionPolicyList
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 Default for PaginatedExpressionPolicyList
impl Default for PaginatedExpressionPolicyList
Source§fn default() -> PaginatedExpressionPolicyList
fn default() -> PaginatedExpressionPolicyList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedExpressionPolicyList
impl<'de> Deserialize<'de> for PaginatedExpressionPolicyList
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 PaginatedExpressionPolicyList
impl PartialEq for PaginatedExpressionPolicyList
Source§fn eq(&self, other: &PaginatedExpressionPolicyList) -> bool
fn eq(&self, other: &PaginatedExpressionPolicyList) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PaginatedExpressionPolicyList
Auto Trait Implementations§
impl Freeze for PaginatedExpressionPolicyList
impl RefUnwindSafe for PaginatedExpressionPolicyList
impl Send for PaginatedExpressionPolicyList
impl Sync for PaginatedExpressionPolicyList
impl Unpin for PaginatedExpressionPolicyList
impl UnwindSafe for PaginatedExpressionPolicyList
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