[][src]Struct openjpeg2_sys::opj_codestream_index

#[repr(C)]
pub struct opj_codestream_index {
    pub main_head_start: OPJ_OFF_T,
    pub main_head_end: OPJ_OFF_T,
    pub codestream_size: OPJ_UINT64,
    pub marknum: OPJ_UINT32,
    pub marker: *mut opj_marker_info_t,
    pub maxmarknum: OPJ_UINT32,
    pub nb_of_tiles: OPJ_UINT32,
    pub tile_index: *mut opj_tile_index_t,
}

Index structure of the codestream (FIXME should be expand and enhance)

Fields

main_head_start: OPJ_OFF_T

main header start position (SOC position)

main_head_end: OPJ_OFF_T

main header end position (first SOT position)

codestream_size: OPJ_UINT64

codestream's size

marknum: OPJ_UINT32

number of markers

marker: *mut opj_marker_info_t

list of markers

maxmarknum: OPJ_UINT32

actual size of markers array

nb_of_tiles: OPJ_UINT32tile_index: *mut opj_tile_index_t

Trait Implementations

impl Clone for opj_codestream_index[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for opj_codestream_index[src]

impl Debug for opj_codestream_index[src]

Auto Trait Implementations

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]