pub struct ChannelFull {Show 19 fields
pub cid: ChannelId,
pub pid: ChannelId,
pub channel_order: ChannelId,
pub channel_name: String,
pub total_clients: i32,
pub channel_needed_subscribe_power: i32,
pub channel_topic: Option<String>,
pub channel_flag_default: bool,
pub channel_flag_password: bool,
pub channel_flag_permanent: bool,
pub channel_flag_semi_permanent: bool,
pub channel_codec: i32,
pub channel_codec_quality: u8,
pub channel_needed_talk_power: i32,
pub channel_icon_id: IconHash,
pub seconds_empty: i64,
pub total_clients_family: i32,
pub channel_maxclients: i32,
pub channel_maxfamilyclients: i32,
}
Fields§
§cid: ChannelId
Channel ID
pid: ChannelId
Channel parent
channel_order: ChannelId
ID of the channel
channel_name: String
§total_clients: i32
§channel_needed_subscribe_power: i32
§channel_topic: Option<String>
§channel_flag_default: bool
§channel_flag_password: bool
§channel_flag_permanent: bool
§channel_flag_semi_permanent: bool
§channel_codec: i32
§channel_codec_quality: u8
§channel_needed_talk_power: i32
§channel_icon_id: IconHash
§seconds_empty: i64
§total_clients_family: i32
§channel_maxclients: i32
§channel_maxfamilyclients: i32
Trait Implementations§
Source§impl Debug for ChannelFull
impl Debug for ChannelFull
Source§impl From<&ChannelFull> for ChannelEdit
impl From<&ChannelFull> for ChannelEdit
Source§fn from(c: &ChannelFull) -> Self
fn from(c: &ChannelFull) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ChannelFull
impl RefUnwindSafe for ChannelFull
impl Send for ChannelFull
impl Sync for ChannelFull
impl Unpin for ChannelFull
impl UnwindSafe for ChannelFull
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