Struct fitsio::columndescription::ColumnDataDescription [] [src]

pub struct ColumnDataDescription {
    pub repeat: usize,
    pub width: usize,
    pub typ: ColumnDataType,
}

Description of the column data

Fields

Does the column contain multiple values?

How wide is the column?

What data type does the column store?

Methods

impl ColumnDataDescription
[src]

[src]

Create a new column data description

[src]

Shortcut for creating a scalar column

[src]

Shortcut for creating a vector column

Trait Implementations

impl Debug for ColumnDataDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ColumnDataDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ColumnDataDescription
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for ColumnDataDescription
[src]

impl From<ColumnDataDescription> for String
[src]

[src]

Performs the conversion.

impl FromStr for ColumnDataDescription
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

Auto Trait Implementations