pub trait LengthExt { // Required method fn to_pixels( &self, base_size: AbsoluteLength, rem_size: Pixels, ) -> Option<Pixels>; }
Converts the Length to Pixels based on a given base_size and rem_size.
Length
Pixels
base_size
rem_size
If the Length is Auto, it returns None.
Auto
None