[][src]Struct norad::Guideline

pub struct Guideline {
    pub line: Line,
    pub name: Option<String>,
    pub color: Option<Color>,
    pub identifier: Option<Identifier>,
}

A guideline associated with a glyph.

Fields

line: Line

The line itself.

name: Option<String>

An arbitrary name for the guideline.

color: Option<Color>

The color of the line.

identifier: Option<Identifier>

Unique identifier for the guideline. This attribute is not required and should only be added to guidelines as needed.

Trait Implementations

impl Clone for Guideline[src]

impl Debug for Guideline[src]

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

impl PartialEq<Guideline> for Guideline[src]

impl Serialize for Guideline[src]

impl StructuralPartialEq for Guideline[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.