pub struct ObjsSubteam {Show 21 fields
pub auto_provision: bool,
pub auto_type: Vec<AutoTypeAnyOf>,
pub channel_count: i64,
pub created_by: String,
pub date_create: i64,
pub date_delete: i64,
pub date_update: i64,
pub deleted_by: Vec<DeletedByAnyOf>,
pub description: String,
pub enterprise_subteam_id: String,
pub handle: String,
pub id: String,
pub is_external: bool,
pub is_subteam: bool,
pub is_usergroup: bool,
pub name: String,
pub prefs: Prefs,
pub team_id: String,
pub updated_by: String,
pub user_count: i64,
pub users: Vec<String>,
}Fields§
§auto_provision: bool§auto_type: Vec<AutoTypeAnyOf>§channel_count: i64§created_by: String§date_create: i64§date_delete: i64§date_update: i64§deleted_by: Vec<DeletedByAnyOf>§description: String§enterprise_subteam_id: String§handle: String§id: String§is_external: bool§is_subteam: bool§is_usergroup: bool§name: String§prefs: Prefs§team_id: String§updated_by: String§user_count: i64§users: Vec<String>Trait Implementations§
Source§impl Clone for ObjsSubteam
impl Clone for ObjsSubteam
Source§fn clone(&self) -> ObjsSubteam
fn clone(&self) -> ObjsSubteam
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 ObjsSubteam
impl Debug for ObjsSubteam
Source§impl<'de> Deserialize<'de> for ObjsSubteam
impl<'de> Deserialize<'de> for ObjsSubteam
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 JsonSchema for ObjsSubteam
impl JsonSchema for ObjsSubteam
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ObjsSubteam
impl PartialEq for ObjsSubteam
Source§impl Serialize for ObjsSubteam
impl Serialize for ObjsSubteam
impl StructuralPartialEq for ObjsSubteam
Auto Trait Implementations§
impl Freeze for ObjsSubteam
impl RefUnwindSafe for ObjsSubteam
impl Send for ObjsSubteam
impl Sync for ObjsSubteam
impl Unpin for ObjsSubteam
impl UnwindSafe for ObjsSubteam
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