#[repr(C)]pub struct spng_chunk {
pub offset: usize,
pub length: u32,
pub type_: [u8; 4],
pub crc: u32,
}Fields§
§offset: usize§length: u32§type_: [u8; 4]§crc: u32Trait Implementations§
Source§impl Clone for spng_chunk
impl Clone for spng_chunk
Source§fn clone(&self) -> spng_chunk
fn clone(&self) -> spng_chunk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for spng_chunk
Auto Trait Implementations§
impl Freeze for spng_chunk
impl RefUnwindSafe for spng_chunk
impl Send for spng_chunk
impl Sync for spng_chunk
impl Unpin for spng_chunk
impl UnsafeUnpin for spng_chunk
impl UnwindSafe for spng_chunk
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