[][src]Struct fred_rs::release::tables::Element

pub struct Element {
    pub element_id: usize,
    pub release_id: usize,
    pub series_id: Option<String>,
    pub parent_id: Option<usize>,
    pub line: Option<String>,
    pub etype: String,
    pub name: String,
    pub level: String,
    pub children: Vec<Element>,
}

Data structure containing infomation about a particular release table element

https://research.stlouisfed.org/docs/api/fred/release_tables.html

Fields

element_id: usize

The element ID number

release_id: usize

The release ID number

series_id: Option<String>

The series name

parent_id: Option<usize>

The parent element ID number

line: Option<String>

The table line number

etype: String

The element type

name: String

The element name

level: String

The element nesting level

children: Vec<Element>

Trait Implementations

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

Auto Trait Implementations

impl RefUnwindSafe for Element

impl Send for Element

impl Sync for Element

impl Unpin for Element

impl UnwindSafe for Element

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: Deserialize<'de>, 
[src]

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

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.