#[repr(C)]pub struct apr_version_t {
pub major: c_int,
pub minor: c_int,
pub patch: c_int,
pub is_dev: c_int,
}Expand description
The numeric version information is broken out into fields within this structure.
Fields§
§major: c_int< major number
minor: c_int< minor number
patch: c_int< patch number
is_dev: c_int< is development (1 or 0)
Trait Implementations§
Source§impl Clone for apr_version_t
impl Clone for apr_version_t
Source§fn clone(&self) -> apr_version_t
fn clone(&self) -> apr_version_t
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 apr_version_t
impl Debug for apr_version_t
impl Copy for apr_version_t
Auto Trait Implementations§
impl Freeze for apr_version_t
impl RefUnwindSafe for apr_version_t
impl Send for apr_version_t
impl Sync for apr_version_t
impl Unpin for apr_version_t
impl UnsafeUnpin for apr_version_t
impl UnwindSafe for apr_version_t
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