Trait Check

Source
pub trait Check: Sized {
    // Required method
    fn check(self) -> Result<Self>;
}

Required Methods§

Source

fn check(self) -> Result<Self>

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<P> Check for ServerMessage<P>

Source§

fn check(self) -> Result<Self>

Implementors§