BuildInto

Trait BuildInto 

Source
pub trait BuildInto<T>: Sized {
    // Required method
    fn build_into(self) -> T;
}

Required Methods§

Source

fn build_into(self) -> T

Converts this type into the (usually inferred) input type.

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§

Source§

impl<S, T> BuildInto<T> for S
where T: BuildFrom<S>,