#[repr(C)]pub struct LibCZIVersionInfoInterop {
pub major: i32,
pub minor: i32,
pub patch: i32,
pub tweak: i32,
}Expand description
This struct contains the version information of the libCZIApi-library. For versioning libCZI, SemVer2 (https://semver.org/) is used. Note that the value of the tweak version number does not have a meaning (as far as SemVer2 is concerned).
Fields§
§major: i32< The major version number.
minor: i32< The minor version number.
patch: i32< The patch version number.
tweak: i32< The tweak version number.
Trait Implementations§
Source§impl Clone for LibCZIVersionInfoInterop
impl Clone for LibCZIVersionInfoInterop
Source§fn clone(&self) -> LibCZIVersionInfoInterop
fn clone(&self) -> LibCZIVersionInfoInterop
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 LibCZIVersionInfoInterop
impl Debug for LibCZIVersionInfoInterop
impl Copy for LibCZIVersionInfoInterop
Auto Trait Implementations§
impl Freeze for LibCZIVersionInfoInterop
impl RefUnwindSafe for LibCZIVersionInfoInterop
impl Send for LibCZIVersionInfoInterop
impl Sync for LibCZIVersionInfoInterop
impl Unpin for LibCZIVersionInfoInterop
impl UnsafeUnpin for LibCZIVersionInfoInterop
impl UnwindSafe for LibCZIVersionInfoInterop
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