#[repr(C)]pub struct opj_packet_info {
pub start_pos: OPJ_OFF_T,
pub end_ph_pos: OPJ_OFF_T,
pub end_pos: OPJ_OFF_T,
pub disto: f64,
}
Expand description
Index structure : Information concerning a packet inside tile
Fields§
§start_pos: OPJ_OFF_T
packet start position (including SOP marker if it exists)
end_ph_pos: OPJ_OFF_T
end of packet header position (including EPH marker if it exists)
end_pos: OPJ_OFF_T
packet end position
disto: f64
packet distorsion
Trait Implementations§
Source§impl Clone for opj_packet_info
impl Clone for opj_packet_info
Source§fn clone(&self) -> opj_packet_info
fn clone(&self) -> opj_packet_info
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for opj_packet_info
impl Debug for opj_packet_info
impl Copy for opj_packet_info
Auto Trait Implementations§
impl Freeze for opj_packet_info
impl RefUnwindSafe for opj_packet_info
impl Send for opj_packet_info
impl Sync for opj_packet_info
impl Unpin for opj_packet_info
impl UnwindSafe for opj_packet_info
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more