[][src]Struct figlet_rs::FIGfont

pub struct FIGfont {
    pub header_line: HeaderLine,
    pub comments: String,
    pub fonts: HashMap<u32, FIGcharacter>,
}

FIGlet font

Fields

header_line: HeaderLinecomments: Stringfonts: HashMap<u32, FIGcharacter>

Methods

impl FIGfont[src]

pub fn from_content(contents: &str) -> FIGfont[src]

generate FIGlet font from string literal

pub fn from_file(fontname: &str) -> FIGfont[src]

generate FIGlet font from specified file

pub fn standand() -> FIGfont[src]

the standard FIGlet font, which you can find fontdb

pub fn convert(&self, message: &str) -> Option<FIGure>[src]

convert string literal to FIGure

Auto Trait Implementations

impl Send for FIGfont

impl Sync for FIGfont

Blanket Implementations

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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