agde_io

Enum Message

source
pub enum Message {
    Text(String),
    Binary(Vec<u8>),
}

Variants§

§

Text(String)

§

Binary(Vec<u8>)

Trait Implementations§

source§

impl Debug for Message

source§

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

Formats the value using the given formatter. Read more
source§

impl From<String> for Message