Enum hulc2envolventecte::cte::common::Orientation[][src]

pub enum Orientation {
    N,
    NE,
    E,
    SE,
    S,
    SW,
    W,
    NW,
    HZ,
}

Nombres para la orientación de un elemento, según los puntos cardinales y elemento horizontal

Variants

N

Norte

NE

Noreste

E

Este

SE

Sureste

S

Sur

SW

Suroeste

W

Oeste

NW

Noroeste

HZ

Horizontal

Trait Implementations

impl Clone for Orientation[src]

impl Copy for Orientation[src]

impl Debug for Orientation[src]

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

impl Display for Orientation[src]

impl Eq for Orientation[src]

impl From<&'_ Wall> for Orientation[src]

Convierte opaco a Orientation

impl From<&'_ str> for Orientation[src]

Convierte str a Orientation

impl From<f32> for Orientation[src]

Convierte del ángulo entre normal del elemento constructivo y sur geográfico (azimuth geográfico) a enum Orientation Sigue el criterio de la UNE-EN ISO 52016-1, medido desde el sur, positivo al este, negativo al oeste (S=0, E=+90, W=-90) Nota: difiere del criterio BDL, que parte del norte, con E+ y W-

impl Hash for Orientation[src]

impl PartialEq<Orientation> for Orientation[src]

impl Serialize for Orientation[src]

impl StructuralEq for Orientation[src]

impl StructuralPartialEq for Orientation[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> ToString for T where
    T: Display + ?Sized
[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.