[][src]Struct openjpeg2_sys::opj_tile_index

#[repr(C)]
pub struct opj_tile_index {
    pub tileno: OPJ_UINT32,
    pub nb_tps: OPJ_UINT32,
    pub current_nb_tps: OPJ_UINT32,
    pub current_tpsno: OPJ_UINT32,
    pub tp_index: *mut opj_tp_index_t,
    pub marknum: OPJ_UINT32,
    pub marker: *mut opj_marker_info_t,
    pub maxmarknum: OPJ_UINT32,
    pub nb_packet: OPJ_UINT32,
    pub packet_index: *mut opj_packet_info_t,
}

Index structure about a tile

Fields

tileno: OPJ_UINT32

tile index

nb_tps: OPJ_UINT32

number of tile parts

current_nb_tps: OPJ_UINT32

current nb of tile part (allocated)

current_tpsno: OPJ_UINT32

current tile-part index

tp_index: *mut opj_tp_index_t

information concerning tile parts

marknum: OPJ_UINT32

number of markers

marker: *mut opj_marker_info_t

list of markers

maxmarknum: OPJ_UINT32

actual size of markers array

nb_packet: OPJ_UINT32

packet number

packet_index: *mut opj_packet_info_t

information concerning packets inside tile

Trait Implementations

impl Clone for opj_tile_index[src]

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

Performs copy-assignment from source. Read more

impl Copy for opj_tile_index[src]

impl Debug for opj_tile_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]