Struct plotters_backend::text_anchor::Pos [−][src]
Expand description
The text anchor position.
Fields
h_pos: HPosThe horizontal position of the anchor point
v_pos: VPosThe 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 Posimpl UnwindSafe for PosBlanket Implementations
Mutably borrows from an owned value. Read more