[][src]Struct openjpeg_sys::opj_tp_info

#[repr(C)]pub struct opj_tp_info {
    pub tp_start_pos: c_int,
    pub tp_end_header: c_int,
    pub tp_end_pos: c_int,
    pub tp_start_pack: c_int,
    pub tp_numpacks: c_int,
}

Index structure : Information concerning tile-parts

Fields

tp_start_pos: c_int

start position of tile part

tp_end_header: c_int

end position of tile part header

tp_end_pos: c_int

end position of tile part

tp_start_pack: c_int

start packet of tile part

tp_numpacks: c_int

number of packets of tile part

Trait Implementations

impl Clone for opj_tp_info[src]

impl Copy for opj_tp_info[src]

impl Debug for opj_tp_info[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.