Trait IntoDestWithSize
pub trait IntoDestWithSize<A: Arch> {
// Required method
fn into_dest_with_size(self, size: Size) -> Dest<A>;
}
Expand description
Types that implement this trait can be converted into destinations, given a size.
Required Methods§
fn into_dest_with_size(self, size: Size) -> Dest<A>
fn into_dest_with_size(self, size: Size) -> Dest<A>
Converts self
into a Dest
.