pub struct CollectionResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub name: Option<String>,
pub external_id: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§organization_id: Option<Uuid>
§name: Option<String>
§external_id: Option<String>
Implementations§
Source§impl CollectionResponseModel
impl CollectionResponseModel
pub fn new() -> CollectionResponseModel
Trait Implementations§
Source§impl Clone for CollectionResponseModel
impl Clone for CollectionResponseModel
Source§fn clone(&self) -> CollectionResponseModel
fn clone(&self) -> CollectionResponseModel
Returns a copy 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 CollectionResponseModel
impl Debug for CollectionResponseModel
Source§impl Default for CollectionResponseModel
impl Default for CollectionResponseModel
Source§fn default() -> CollectionResponseModel
fn default() -> CollectionResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CollectionResponseModel
impl<'de> Deserialize<'de> for CollectionResponseModel
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 CollectionResponseModel
impl PartialEq for CollectionResponseModel
Source§impl Serialize for CollectionResponseModel
impl Serialize for CollectionResponseModel
impl StructuralPartialEq for CollectionResponseModel
Auto Trait Implementations§
impl Freeze for CollectionResponseModel
impl RefUnwindSafe for CollectionResponseModel
impl Send for CollectionResponseModel
impl Sync for CollectionResponseModel
impl Unpin for CollectionResponseModel
impl UnwindSafe for CollectionResponseModel
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