pub struct Channel {
pub cid: ChannelId,
pub pid: ChannelId,
pub channel_order: ChannelId,
pub channel_name: String,
pub total_clients: i32,
pub channel_needed_subscribe_power: i32,
}Fields§
§cid: ChannelIdChannel ID
pid: ChannelIdChannel parent, 0 for server
channel_order: ChannelIdID of the channel
channel_name: String§total_clients: i32§channel_needed_subscribe_power: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Channel
impl RefUnwindSafe for Channel
impl Send for Channel
impl Sync for Channel
impl Unpin for Channel
impl UnwindSafe for Channel
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