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