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