pub struct Channel<'a> { /* private fields */ }Implementations§
Source§impl<'a> Channel<'a>
impl<'a> Channel<'a>
pub fn get_name(&self) -> Result<&str, Error>
pub fn get_topic(&self) -> Result<&str, Error>
pub fn get_codec(&self) -> Result<CodecType, Error>
pub fn get_codec_quality(&self) -> Result<i32, Error>
pub fn get_max_clients(&self) -> Result<i32, Error>
pub fn get_max_family_clients(&self) -> Result<i32, Error>
pub fn get_order(&self) -> Result<i32, Error>
pub fn get_permanent(&self) -> Result<bool, Error>
pub fn get_semi_permanent(&self) -> Result<bool, Error>
pub fn get_default(&self) -> Result<bool, Error>
pub fn get_password(&self) -> Result<bool, Error>
pub fn get_codec_latency_factor(&self) -> Result<i32, Error>
pub fn get_codec_is_unencrypted(&self) -> Result<bool, Error>
pub fn get_delete_delay(&self) -> Result<i32, Error>
pub fn get_max_clients_unlimited(&self) -> Result<bool, Error>
pub fn get_max_family_clients_unlimited(&self) -> Result<bool, Error>
Sourcepub fn get_subscribed(&self) -> Result<bool, Error>
pub fn get_subscribed(&self) -> Result<bool, Error>
If we are subscribed to this channel
pub fn get_needed_talk_power(&self) -> Result<i32, Error>
pub fn get_forced_silence(&self) -> Result<i32, Error>
pub fn get_phonetic_name(&self) -> Result<&str, Error>
pub fn get_icon_id(&self) -> Result<i32, Error>
Sourcepub fn get_description(&self) -> Result<&str, Error>
pub fn get_description(&self) -> Result<&str, Error>
Only available if requested explicitly through request_data.
pub fn properties(&self) -> Vec<ChannelProperty<'_>>
Trait Implementations§
impl<'a> Eq for Channel<'a>
Auto Trait Implementations§
impl<'a> Freeze for Channel<'a>
impl<'a> RefUnwindSafe for Channel<'a>
impl<'a> Send for Channel<'a>
impl<'a> Sync for Channel<'a>
impl<'a> Unpin for Channel<'a>
impl<'a> UnwindSafe for Channel<'a>
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