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