Enum rust_cast::ChannelMessage[][src]

pub enum ChannelMessage {
    Connection(ConnectionResponse),
    Heartbeat(HeartbeatResponse),
    Media(MediaResponse),
    Receiver(ReceiverResponse),
    Raw(CastMessage),
}

Supported channel message types.

Variants

Message to be processed by ConnectionChannel.

Message to be processed by HeartbeatChannel.

Message to be processed by MediaChannel.

Message to be processed by ReceiverChannel.

Raw message is returned when built-in channels can't process it (e.g. because of unknown namespace).

Auto Trait Implementations