#[repr(C)]pub struct FileHeaderInfoInterop {
pub guid: [c_uchar; 16],
pub majorVersion: c_int,
pub minorVersion: c_int,
}Expand description
This structure contains the information about file-header.
Fields§
§guid: [c_uchar; 16]< The file-GUID of the CZI. Note: CZI defines two GUIDs, this is the “FileGuid”. Multi-file containers < (for which the other GUID “PrimaryFileGuid” is used) are not supported by libCZI currently.
majorVersion: c_int< The major version.
minorVersion: c_int< The minor version.
Trait Implementations§
Source§impl Clone for FileHeaderInfoInterop
impl Clone for FileHeaderInfoInterop
Source§fn clone(&self) -> FileHeaderInfoInterop
fn clone(&self) -> FileHeaderInfoInterop
Returns a duplicate 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 FileHeaderInfoInterop
impl Debug for FileHeaderInfoInterop
impl Copy for FileHeaderInfoInterop
Auto Trait Implementations§
impl Freeze for FileHeaderInfoInterop
impl RefUnwindSafe for FileHeaderInfoInterop
impl Send for FileHeaderInfoInterop
impl Sync for FileHeaderInfoInterop
impl Unpin for FileHeaderInfoInterop
impl UnsafeUnpin for FileHeaderInfoInterop
impl UnwindSafe for FileHeaderInfoInterop
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