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

pub struct Frame {
    pub name: String,
    pub group: String,
    pub conductivity: f32,
    pub absorptivity: f32,
    pub width: f32,
}

Marco de hueco (NAME-FRAME)

Fields

name: String

Nombre

group: String

Grupo al que pertenece (biblioteca)

conductivity: f32

Transmitancia térmica, U (W/m2K)

absorptivity: f32

Absortividad del marco, alpha (-)

width: f32

Ancho del marco (m)

Trait Implementations

impl Clone for Frame[src]

impl Debug for Frame[src]

impl Default for Frame[src]

impl TryFrom<BdlBlock> for Frame[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]

Conversión de bloque BDL a marco de hueco (NAME-FRAME)

Conductividad en FRAME-CONDUCT (W/m2K) Absortividad(alpha) en FRAME-ABS (-)

Ejemplo:

     "Marco PVC_1" = NAME-FRAME
     GROUP         = "Marcos HULC2020"
     FRAME-WIDTH   =            0.1
     FRAME-CONDUCT =            1.3
     FRAME-ABS     =            0.7
     NAME_CALENER  = ""
     LIBRARY       = NO
     UTIL          =  NO
     ..

TODO: Propiedades no trasladadas: NAME-CALENER, LIBRRARY, UTIL

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.