Trait std_reset::traits::of_to::Of

source ·
pub trait Of<F, Output = Self>: To {
    // Required method
    fn of(value: F) -> Output;
}

Required Methods§

source

fn of(value: F) -> Output

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<F, I> Of<Vec<F>> for Vec<I>
where I: Of<F>,

source§

fn of(vec: Vec<F>) -> Self

source§

impl<F: Clone, I> Of<&Vec<F>> for Vec<I>
where I: Of<F>,

source§

fn of(vec: &Vec<F>) -> Self

Implementors§