[][src]Struct mumble_protocol::control::msgs::ContextActionModify

pub struct ContextActionModify {
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
    // some fields omitted
}

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ContextActionModify[src]

pub fn new() -> ContextActionModify[src]

pub fn get_action(&self) -> &str[src]

pub fn clear_action(&mut self)[src]

pub fn has_action(&self) -> bool[src]

pub fn set_action(&mut self, v: String)[src]

pub fn mut_action(&mut self) -> &mut String[src]

pub fn take_action(&mut self) -> String[src]

pub fn get_text(&self) -> &str[src]

pub fn clear_text(&mut self)[src]

pub fn has_text(&self) -> bool[src]

pub fn set_text(&mut self, v: String)[src]

pub fn mut_text(&mut self) -> &mut String[src]

pub fn take_text(&mut self) -> String[src]

pub fn get_context(&self) -> u32[src]

pub fn clear_context(&mut self)[src]

pub fn has_context(&self) -> bool[src]

pub fn set_context(&mut self, v: u32)[src]

pub fn get_operation(&self) -> ContextActionModify_Operation[src]

pub fn clear_operation(&mut self)[src]

pub fn has_operation(&self) -> bool[src]

pub fn set_operation(&mut self, v: ContextActionModify_Operation)[src]

Trait Implementations

impl Clear for ContextActionModify[src]

impl Clone for ContextActionModify[src]

impl Debug for ContextActionModify[src]

impl Default for ContextActionModify[src]

impl<'a> Default for &'a ContextActionModify[src]

impl<Dst: VoicePacketDst> From<ContextActionModify> for ControlPacket<Dst>[src]

impl From<ContextActionModify> for RawControlPacket[src]

impl Message for ContextActionModify[src]

impl PartialEq<ContextActionModify> for ContextActionModify[src]

impl ProtobufValue for ContextActionModify[src]

impl StructuralPartialEq for ContextActionModify[src]

impl<'_> TryFrom<&'_ [u8]> for ContextActionModify[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for ContextActionModify[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for ContextActionModify[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.