pub struct GroupSyncableChannel {
pub channel_id: 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>
§group_id: Option<String>
§auto_add: Option<bool>
§create_at: Option<i64>
§delete_at: Option<i64>
§update_at: Option<i64>
Implementations§
Source§impl GroupSyncableChannel
impl GroupSyncableChannel
pub fn new() -> GroupSyncableChannel
Trait Implementations§
Source§impl Clone for GroupSyncableChannel
impl Clone for GroupSyncableChannel
Source§fn clone(&self) -> GroupSyncableChannel
fn clone(&self) -> GroupSyncableChannel
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GroupSyncableChannel
impl Debug for GroupSyncableChannel
Source§impl Default for GroupSyncableChannel
impl Default for GroupSyncableChannel
Source§fn default() -> GroupSyncableChannel
fn default() -> GroupSyncableChannel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupSyncableChannel
impl<'de> Deserialize<'de> for GroupSyncableChannel
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 GroupSyncableChannel
impl PartialEq for GroupSyncableChannel
Source§impl Serialize for GroupSyncableChannel
impl Serialize for GroupSyncableChannel
impl StructuralPartialEq for GroupSyncableChannel
Auto Trait Implementations§
impl Freeze for GroupSyncableChannel
impl RefUnwindSafe for GroupSyncableChannel
impl Send for GroupSyncableChannel
impl Sync for GroupSyncableChannel
impl Unpin for GroupSyncableChannel
impl UnwindSafe for GroupSyncableChannel
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