Skip to main content

IntoLayout

Trait IntoLayout 

Source
pub trait IntoLayout {
    // Required method
    fn into_layout(self) -> Layout;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementations on Foreign Types§

Source§

impl IntoLayout for Vec<(usize, usize)>

Source§

impl<S, D> IntoLayout for (S, D)
where S: Into<Shape>, D: Into<Stride>,

Implementors§

Source§

impl IntoLayout for Layout

Source§

impl<S> IntoLayout for S
where S: Into<Shape>,