[][src]Struct winconsole::console::ConsoleFont

pub struct ConsoleFont {
    pub family: u32,
    pub index: u32,
    pub name: String,
    pub size: Vector2<u16>,
    pub weight: u32,
}

Represents a usable console font.

Fields

family: u32

An integer which describes the font family. See the tmPitchAndFamily field here.

index: u32

The index of the font in the console font table.

name: String

The name of the font.

size: Vector2<u16>

The font size.

weight: u32

The font weight. Accepts values which are multiples of 100, with 400 representing normal weight and 700 representing bold.

Trait Implementations

impl PartialEq<ConsoleFont> for ConsoleFont[src]

impl Clone for ConsoleFont[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for ConsoleFont[src]

fn default() -> Self[src]

Returns an empty ConsoleFont object.

impl Debug for ConsoleFont[src]

impl Serialize for ConsoleFont[src]

impl<'de> Deserialize<'de> for ConsoleFont[src]

Auto Trait Implementations

impl Send for ConsoleFont

impl Sync for ConsoleFont

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]