Skip to main content

And

Trait And 

Source
pub trait And<O> {
    type ReturnOperand;

    // Required method
    fn and(&self, other: O) -> Self::ReturnOperand;
}

Required Associated Types§

Required Methods§

Source

fn and(&self, other: O) -> Self::ReturnOperand

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<O, M> And<M> for O