pub struct CreatePanCollectionCollection {
pub environments: Option<Vec<String>>,
pub id: String,
pub parent_folder_id: i64,
pub summary: Option<String>,
}
Fields§
§environments: Option<Vec<String>>
A list of environments to add to the collection.
id: String
The collection’s ID.
parent_folder_id: i64
The collection’s parent folder ID.
summary: Option<String>
The collection’s summary.
Trait Implementations§
Source§impl Clone for CreatePanCollectionCollection
impl Clone for CreatePanCollectionCollection
Source§fn clone(&self) -> CreatePanCollectionCollection
fn clone(&self) -> CreatePanCollectionCollection
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<'de> Deserialize<'de> for CreatePanCollectionCollection
impl<'de> Deserialize<'de> for CreatePanCollectionCollection
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 CreatePanCollectionCollection
impl PartialEq for CreatePanCollectionCollection
Source§fn eq(&self, other: &CreatePanCollectionCollection) -> bool
fn eq(&self, other: &CreatePanCollectionCollection) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreatePanCollectionCollection
Auto Trait Implementations§
impl Freeze for CreatePanCollectionCollection
impl RefUnwindSafe for CreatePanCollectionCollection
impl Send for CreatePanCollectionCollection
impl Sync for CreatePanCollectionCollection
impl Unpin for CreatePanCollectionCollection
impl UnwindSafe for CreatePanCollectionCollection
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