Arguments

Trait Arguments 

Source
pub trait Arguments<const CONST: bool>: AsIter<Item = Self::Argument> {
    type Argument: Argument<CONST>;

    // Provided method
    fn equivalent(
        optional_self: Option<&Self>,
        optional_other: Option<&Self>,
    ) -> bool { ... }
}

Required Associated Types§

Provided Methods§

Source

fn equivalent( optional_self: Option<&Self>, optional_other: Option<&Self>, ) -> bool

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.

Implementors§