pub struct GroupSyncableChannels {
pub channel_id: Option<String>,
pub channel_display_name: Option<String>,
pub channel_type: Option<String>,
pub team_id: Option<String>,
pub team_display_name: Option<String>,
pub team_type: Option<String>,
pub group_id: Option<String>,
pub auto_add: Option<bool>,
pub create_at: Option<i64>,
pub delete_at: Option<i64>,
pub update_at: Option<i64>,
}Fields§
§channel_id: Option<String>§channel_display_name: Option<String>§channel_type: Option<String>§team_id: Option<String>§team_display_name: Option<String>§team_type: Option<String>§group_id: Option<String>§auto_add: Option<bool>§create_at: Option<i64>§delete_at: Option<i64>§update_at: Option<i64>Implementations§
Source§impl GroupSyncableChannels
impl GroupSyncableChannels
pub fn new() -> GroupSyncableChannels
Trait Implementations§
Source§impl Clone for GroupSyncableChannels
impl Clone for GroupSyncableChannels
Source§fn clone(&self) -> GroupSyncableChannels
fn clone(&self) -> GroupSyncableChannels
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupSyncableChannels
impl Debug for GroupSyncableChannels
Source§impl Default for GroupSyncableChannels
impl Default for GroupSyncableChannels
Source§fn default() -> GroupSyncableChannels
fn default() -> GroupSyncableChannels
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupSyncableChannels
impl<'de> Deserialize<'de> for GroupSyncableChannels
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 GroupSyncableChannels
impl PartialEq for GroupSyncableChannels
Source§impl Serialize for GroupSyncableChannels
impl Serialize for GroupSyncableChannels
impl StructuralPartialEq for GroupSyncableChannels
Auto Trait Implementations§
impl Freeze for GroupSyncableChannels
impl RefUnwindSafe for GroupSyncableChannels
impl Send for GroupSyncableChannels
impl Sync for GroupSyncableChannels
impl Unpin for GroupSyncableChannels
impl UnsafeUnpin for GroupSyncableChannels
impl UnwindSafe for GroupSyncableChannels
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