#[repr(C)]pub struct webview_version_t {
pub major: c_uint,
pub minor: c_uint,
pub patch: c_uint,
}Expand description
Holds the elements of a MAJOR.MINOR.PATCH version number.
Fields§
§major: c_uintMajor version.
minor: c_uintMinor version.
patch: c_uintPatch version.
Trait Implementations§
Source§impl Clone for webview_version_t
impl Clone for webview_version_t
Source§fn clone(&self) -> webview_version_t
fn clone(&self) -> webview_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 webview_version_t
impl Debug for webview_version_t
impl Copy for webview_version_t
Auto Trait Implementations§
impl Freeze for webview_version_t
impl RefUnwindSafe for webview_version_t
impl Send for webview_version_t
impl Sync for webview_version_t
impl Unpin for webview_version_t
impl UnwindSafe for webview_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