pub struct PackageCodeCollection {
pub total_count: Option<Option<i64>>,
pub next_cursor: Option<Option<String>>,
pub items: Vec<PackageCodeCollectionItem>,
}Expand description
PackageCodeCollection : Package code collection.
Fields§
§total_count: Option<Option<i64>>Total number of items in underlying collection, fragment of which is available in items collection.
next_cursor: Option<Option<String>>If specified, contains a cursor to query next page of the items collection.
items: Vec<PackageCodeCollectionItem>Implementations§
Source§impl PackageCodeCollection
impl PackageCodeCollection
Sourcepub fn new(items: Vec<PackageCodeCollectionItem>) -> PackageCodeCollection
pub fn new(items: Vec<PackageCodeCollectionItem>) -> PackageCodeCollection
Package code collection.
Trait Implementations§
Source§impl CandidType for PackageCodeCollection
impl CandidType for PackageCodeCollection
Source§impl Clone for PackageCodeCollection
impl Clone for PackageCodeCollection
Source§fn clone(&self) -> PackageCodeCollection
fn clone(&self) -> PackageCodeCollection
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 PackageCodeCollection
impl Debug for PackageCodeCollection
Source§impl Default for PackageCodeCollection
impl Default for PackageCodeCollection
Source§fn default() -> PackageCodeCollection
fn default() -> PackageCodeCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PackageCodeCollection
impl<'de> Deserialize<'de> for PackageCodeCollection
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 PackageCodeCollection
impl PartialEq for PackageCodeCollection
Source§impl Serialize for PackageCodeCollection
impl Serialize for PackageCodeCollection
impl StructuralPartialEq for PackageCodeCollection
Auto Trait Implementations§
impl Freeze for PackageCodeCollection
impl RefUnwindSafe for PackageCodeCollection
impl Send for PackageCodeCollection
impl Sync for PackageCodeCollection
impl Unpin for PackageCodeCollection
impl UnwindSafe for PackageCodeCollection
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