tungstenite::handshake::machine

Trait TryParse

Source
pub trait TryParse: Sized {
    // Required method
    fn try_parse(data: &[u8]) -> Result<Option<(usize, Self)>>;
}
Expand description

The parseable object.

Required Methods§

Source

fn try_parse(data: &[u8]) -> Result<Option<(usize, Self)>>

Return Ok(None) if incomplete, Err on syntax error.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl TryParse for HeaderMap

Source§

fn try_parse(buf: &[u8]) -> Result<Option<(usize, Self)>>

Implementors§