[][src]Struct hulc2envolventecte::parsers::bdl::Construction

pub struct Construction {
    pub name: String,
    pub parent: String,
    pub wallcons: String,
    pub absorptance: Option<f32>,
}

Construcción - Remite a LAYERS (¿y otras opciones?)

Fields

name: String

Nombre

parent: String

Elemento vinculado (muro, etc)

wallcons: String

Definición de capas (HULC solo admite definición por capas)

absorptance: Option<f32>

Absortividad (a la radiación solar) (-)

Trait Implementations

impl Clone for Construction[src]

impl Debug for Construction[src]

impl Default for Construction[src]

impl TryFrom<BdlBlock> for Construction[src]

type Error = Error

The type returned in the event of a conversion error.

pub fn try_from(value: BdlBlock) -> Result<Self, Self::Error>[src]

Convierte de bloque BDL a construcción - Remite a LAYERS (¿y otras opciones?)

Ejemplo:

    "muro_opaco0.40" =  CONSTRUCTION
    TYPE   = LAYERS  
    LAYERS = "muro_opaco"
    ABSORPTANCE = 0.400000
    ..

HULC solo usa construcciones definidas por capas (LAYERS) y únicamente permite definir la absortividad (ABSORPTANCE)

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> 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.