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