#[repr(C)]pub struct PHYSFS_Version {
pub major: PHYSFS_uint8,
pub minor: PHYSFS_uint8,
pub patch: PHYSFS_uint8,
}Expand description
\struct PHYSFS_Version \brief Information the version of PhysicsFS in use.
Represents the library’s version as three levels: major revision (increments with massive changes, additions, and enhancements), minor revision (increments with backwards-compatible changes to the major revision), and patchlevel (increments with fixes to the minor revision).
\sa PHYSFS_VERSION \sa PHYSFS_getLinkedVersion
Fields§
§major: PHYSFS_uint8< major revision
minor: PHYSFS_uint8< minor revision
patch: PHYSFS_uint8< patchlevel
Trait Implementations§
Source§impl Clone for PHYSFS_Version
impl Clone for PHYSFS_Version
Source§fn clone(&self) -> PHYSFS_Version
fn clone(&self) -> PHYSFS_Version
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 PHYSFS_Version
impl Debug for PHYSFS_Version
impl Copy for PHYSFS_Version
Auto Trait Implementations§
impl Freeze for PHYSFS_Version
impl RefUnwindSafe for PHYSFS_Version
impl Send for PHYSFS_Version
impl Sync for PHYSFS_Version
impl Unpin for PHYSFS_Version
impl UnwindSafe for PHYSFS_Version
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