Skip to main content

With

Trait With 

Source
pub trait With<T, Output> {
    // Required method
    fn with(self, v: T) -> Output;
}
Expand description

Make A Tuple
A.after(B) -> (A, B)

Required Methods§

Source

fn with(self, v: T) -> Output

Make A Tuple
A.after(B) -> (A, B)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<S, T> With<T, (S, T)> for S