Trait plotters::style::SizeDesc[][src]

pub trait SizeDesc {
    fn in_pixels<T: HasDimension>(&self, parent: &T) -> i32;
}
Expand description

The trait that describes a size, it may be a relative size which the size is determined by the parent size, e.g., 10% of the parent width

Required methods

fn in_pixels<T: HasDimension>(&self, parent: &T) -> i32[src]

Convert the size into the number of pixels

  • parent: The reference to the parent container of this size
  • returns: The number of pixels

Implementations on Foreign Types

impl SizeDesc for i32[src]

fn in_pixels<D: HasDimension>(&self, _parent: &D) -> i32[src]

impl SizeDesc for u32[src]

fn in_pixels<D: HasDimension>(&self, _parent: &D) -> i32[src]

impl SizeDesc for f32[src]

fn in_pixels<D: HasDimension>(&self, _parent: &D) -> i32[src]

impl SizeDesc for f64[src]

fn in_pixels<D: HasDimension>(&self, _parent: &D) -> i32[src]

Implementors

impl SizeDesc for RelativeSize[src]

fn in_pixels<D: HasDimension>(&self, parent: &D) -> i32[src]