pub struct LibCZIVersionInfo(/* private fields */);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).
Implementations§
Source§impl LibCZIVersionInfo
impl LibCZIVersionInfo
Sourcepub fn get_lib_czi_version_info() -> Result<LibCZIVersionInfo, Error>
pub fn get_lib_czi_version_info() -> Result<LibCZIVersionInfo, Error>
Get version information about the libCZIApi-library.
\param [out] version_info If successful, the version information is put here.
\returns An error-code indicating success or failure of the operation.
Trait Implementations§
Source§impl Clone for LibCZIVersionInfo
impl Clone for LibCZIVersionInfo
Source§fn clone(&self) -> LibCZIVersionInfo
fn clone(&self) -> LibCZIVersionInfo
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 moreAuto Trait Implementations§
impl Freeze for LibCZIVersionInfo
impl RefUnwindSafe for LibCZIVersionInfo
impl Send for LibCZIVersionInfo
impl Sync for LibCZIVersionInfo
impl Unpin for LibCZIVersionInfo
impl UnsafeUnpin for LibCZIVersionInfo
impl UnwindSafe for LibCZIVersionInfo
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