[][src]Struct mumble_protocol::control::RawControlPacket

pub struct RawControlPacket {
    pub id: u16,
    pub bytes: Bytes,
}

Raw/not-yet-parsed Mumble control packet.

Fields

id: u16

Packet ID

See msgs::id.

bytes: Bytes

Raw message bytes.

Trait Implementations

impl Clone for RawControlPacket[src]

impl Debug for RawControlPacket[src]

impl Encoder<RawControlPacket> for RawControlCodec[src]

type Error = Error

The type of encoding errors. Read more

impl From<ACL> for RawControlPacket[src]

impl From<Authenticate> for RawControlPacket[src]

impl From<BanList> for RawControlPacket[src]

impl From<ChannelRemove> for RawControlPacket[src]

impl From<ChannelState> for RawControlPacket[src]

impl From<CodecVersion> for RawControlPacket[src]

impl From<ContextAction> for RawControlPacket[src]

impl From<ContextActionModify> for RawControlPacket[src]

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

impl From<CryptSetup> for RawControlPacket[src]

impl From<PermissionDenied> for RawControlPacket[src]

impl From<PermissionQuery> for RawControlPacket[src]

impl From<Ping> for RawControlPacket[src]

impl From<QueryUsers> for RawControlPacket[src]

impl From<Reject> for RawControlPacket[src]

impl From<RequestBlob> for RawControlPacket[src]

impl From<ServerConfig> for RawControlPacket[src]

impl From<ServerSync> for RawControlPacket[src]

impl From<SuggestConfig> for RawControlPacket[src]

impl From<TextMessage> for RawControlPacket[src]

impl From<UserList> for RawControlPacket[src]

impl From<UserRemove> for RawControlPacket[src]

impl From<UserState> for RawControlPacket[src]

impl From<UserStats> for RawControlPacket[src]

impl From<Version> for RawControlPacket[src]

impl<Dst: VoicePacketDst> From<VoicePacket<Dst>> for RawControlPacket[src]

impl From<VoiceTarget> for RawControlPacket[src]

impl PartialEq<RawControlPacket> for RawControlPacket[src]

impl StructuralPartialEq for RawControlPacket[src]

impl<Dst: VoicePacketDst> TryFrom<RawControlPacket> for ControlPacket<Dst>[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for Version[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for UserState[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for BanList[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for TextMessage[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for PermissionDenied[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for ACL[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for QueryUsers[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for CryptSetup[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.

impl TryFrom<RawControlPacket> for ContextAction[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for UserList[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl<Dst: VoicePacketDst> TryFrom<RawControlPacket> for VoicePacket<Dst>[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for VoiceTarget[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for PermissionQuery[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for CodecVersion[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for UserStats[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for RequestBlob[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for ServerConfig[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for SuggestConfig[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for Authenticate[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for Ping[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for Reject[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for ServerSync[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for ChannelRemove[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for ChannelState[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for UserRemove[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.