Struct fitsio::columndescription::ColumnDescription [] [src]

pub struct ColumnDescription {
    pub name: String,
    pub data_type: Option<ColumnDataDescription>,
}

Description for new columns

Fields

Name of the column

Type of the data, see the cfitsio documentation

Methods

impl ColumnDescription
[src]

[src]

Create a new ColumnDescription from a name

[src]

Add a data type to the column description

[src]

Make the column repeat

[src]

Define the column width

[src]

Trait Implementations

impl Debug for ColumnDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ColumnDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations