Struct plotters_backend::text_anchor::Pos [−][src]
Expand description
The text anchor position.
Fields
h_pos: HPos
The horizontal position of the anchor point
v_pos: VPos
The vertical position of the anchor point
Implementations
Create a new text anchor position.
h_pos
: The horizontal position of the anchor pointv_pos
: The vertical position of the anchor point- returns The newly created text anchor position
use plotters_backend::text_anchor::{Pos, HPos, VPos}; let pos = Pos::new(HPos::Left, VPos::Top);
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Pos
impl UnwindSafe for Pos
Blanket Implementations
Mutably borrows from an owned value. Read more