Struct fitsio::fitsfile::ImageDescription [] [src]

pub struct ImageDescription<'a> {
    pub data_type: ImageType,
    pub dimensions: &'a [usize],
}

Description of a new image

Fields

Data type of the new image

Shape of the image

Unlike cfitsio, the order of the dimensions follows the C convention, i.e. row-major order.

Trait Implementations

impl<'a> Clone for ImageDescription<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a> Send for ImageDescription<'a>

impl<'a> Sync for ImageDescription<'a>