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