Trait plotters::coord::combinators::BuildNestedCoord

source ·
pub trait BuildNestedCoord: AsRangedCoord{
    // Provided method
    fn nested_coord<S: AsRangedCoord>(
        self,
        builder: impl Fn(<Self::CoordDescType as Ranged>::ValueType) -> S
    ) -> NestedRange<Self::CoordDescType, S::CoordDescType> { ... }
}
Expand description

Used to build a nested coordinate system.

Provided Methods§

source

fn nested_coord<S: AsRangedCoord>( self, builder: impl Fn(<Self::CoordDescType as Ranged>::ValueType) -> S ) -> NestedRange<Self::CoordDescType, S::CoordDescType>

Builds a nested coordinate system.

Object Safety§

This trait is not object safe.

Implementors§