Skip to main content

Check

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".

Implementations on Foreign Types§

Source§

impl<P> Check for ServerMessage<P>

Source§

fn check(self) -> Result<Self>

Implementors§