Struct ts3::event::ChannelEdited[][src]

pub struct ChannelEdited {
Show fields pub cid: u64, pub reasonid: u64, pub invokerid: u64, pub invokername: String, pub invokeruid: String, pub channel_name: String, pub channel_topic: String, pub channel_codec: u8, pub channel_codec_quality: u8, pub channel_maxclients: u16, pub channel_maxfamilyclients: u16, pub channel_order: u64, pub channel_flag_permanent: bool, pub channel_flag_semi_permanent: bool, pub channel_flag_default: bool, pub channel_flag_password: String, pub channel_codec_latency_factor: u64, pub channel_codec_is_unencrypted: bool, pub channel_delete_delay: u32, pub channel_flag_maxclients_unlimited: bool, pub channel_flag_maxfamilyclients_unlimited: bool, pub channel_flag_maxfamilyclients_inherited: bool, pub channel_needed_talk_power: u32, pub channel_name_phonetic: String, pub channel_icon_id: u64,
}
Expand description

Data for a channeledited event. The fields cid, reasonid, invokerid, invokername and invokeruid are always included. All fields prefixed channel_… are only included if the value of the channel was changed.

Fields

cid: u64reasonid: u64invokerid: u64invokername: Stringinvokeruid: Stringchannel_name: Stringchannel_topic: Stringchannel_codec: u8channel_codec_quality: u8channel_maxclients: u16channel_maxfamilyclients: u16channel_order: u64channel_flag_permanent: boolchannel_flag_semi_permanent: boolchannel_flag_default: boolchannel_flag_password: Stringchannel_codec_latency_factor: u64channel_codec_is_unencrypted: boolchannel_delete_delay: u32channel_flag_maxclients_unlimited: boolchannel_flag_maxfamilyclients_unlimited: boolchannel_flag_maxfamilyclients_inherited: boolchannel_needed_talk_power: u32channel_name_phonetic: Stringchannel_icon_id: u64

Trait Implementations

impl Debug for ChannelEdited[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Decode<ChannelEdited> for ChannelEdited[src]

impl Default for ChannelEdited[src]

fn default() -> ChannelEdited[src]

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.