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