[][src]Struct plotters::prelude::MultiLineText

pub struct MultiLineText<'a, Coord, T: Borrow<str>> { /* fields omitted */ }
[]

An multi-line text element. The Text element allows only signle line text and the MultiLineText supports drawing multiple lines

Methods

impl<'a, Coord, T: Borrow<str>> MultiLineText<'a, Coord, T>[src][]

Create an emply multi-line text element. Lines can be append to the empty multi-line by calling push_line method

pos: The upper left corner style: The style of the text

Set the line height of the multi-line text element

Push a new line into the given multi-line text line: The line to be pushed

Estimate the multi-line text element's dimension

Move the location to the sepecified location

impl<'a, T: Borrow<str>> MultiLineText<'a, BackendCoord, T>[src][]

Compute the line layout

impl<'a, Coord> MultiLineText<'a, Coord, &'a str>[src][]

Parse a multi-line text into an multi-line element.

text: The text that is parsed pos: The position of the text style: The style for this text max_width: The width of the multi-line text element, the line will break into two lines if the line is wider than the max_width. If 0 is given, do not do any line wrapping

impl<'a, Coord> MultiLineText<'a, Coord, String>[src][]

Parse a multi-line text into an multi-line element.

text: The text that is parsed pos: The position of the text style: The style for this text max_width: The width of the multi-line text element, the line will break into two lines if the line is wider than the max_width. If 0 is given, do not do any line wrapping

Trait Implementations

impl<'b, 'a, Coord: 'a, T: Borrow<str> + 'a> PointCollection<'a, Coord> for &'a MultiLineText<'b, Coord, T>[src][+]

type Borrow = &'a Coord

The item in point iterator

type IntoIter = Once<&'a Coord>

The point iterator

impl<'a, Coord: 'a, DB: DrawingBackend, T: Borrow<str>> Drawable<DB> for MultiLineText<'a, Coord, T>[src][+]

Auto Trait Implementations

impl<'a, Coord, T> Send for MultiLineText<'a, Coord, T> where
    Coord: Send,
    T: Send

impl<'a, Coord, T> Sync for MultiLineText<'a, Coord, T> where
    Coord: Sync,
    T: Sync

Blanket Implementations

impl<'b, T, DB, Coord> IntoDynElement for T where
    Coord: Clone,
    DB: DrawingBackend,
    T: Drawable<DB> + 'b,
    &'a T: PointCollection<'a, Coord>, 
[src][+]

impl<T> From for T[src][+]

impl<T, U> Into for T where
    U: From<T>, 
[src][+]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src][+]

impl<T> Any for T where
    T: 'static + ?Sized
[src][+]

impl<T> BorrowMut for T where
    T: ?Sized
[src][+]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.