pub struct SharingGroup {Show 14 fields
pub uuid: Option<Uuid>,
pub name: Option<String>,
pub description: Option<String>,
pub releasability: Option<String>,
pub local: Option<bool>,
pub active: Option<bool>,
pub org_count: Option<String>,
pub organisation_uuid: Option<Uuid>,
pub org_id: Option<String>,
pub sync_user_id: Option<String>,
pub created: Option<String>,
pub modified: Option<String>,
pub roaming: Option<bool>,
pub id: Option<Option<String>>,
}
Fields§
§uuid: Option<Uuid>
§name: Option<String>
§description: Option<String>
§releasability: Option<String>
§local: Option<bool>
§active: Option<bool>
§org_count: Option<String>
§organisation_uuid: Option<Uuid>
§org_id: Option<String>
§sync_user_id: Option<String>
§created: Option<String>
§modified: Option<String>
§roaming: Option<bool>
§id: Option<Option<String>>
Implementations§
Source§impl SharingGroup
impl SharingGroup
pub fn new() -> SharingGroup
Trait Implementations§
Source§impl Clone for SharingGroup
impl Clone for SharingGroup
Source§fn clone(&self) -> SharingGroup
fn clone(&self) -> SharingGroup
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 SharingGroup
impl Debug for SharingGroup
Source§impl Default for SharingGroup
impl Default for SharingGroup
Source§fn default() -> SharingGroup
fn default() -> SharingGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SharingGroup
impl<'de> Deserialize<'de> for SharingGroup
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 SharingGroup
impl PartialEq for SharingGroup
Source§impl Serialize for SharingGroup
impl Serialize for SharingGroup
impl StructuralPartialEq for SharingGroup
Auto Trait Implementations§
impl Freeze for SharingGroup
impl RefUnwindSafe for SharingGroup
impl Send for SharingGroup
impl Sync for SharingGroup
impl Unpin for SharingGroup
impl UnwindSafe for SharingGroup
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