#[repr(C)]pub struct webview_version_info_t {
pub version: webview_version_t,
pub version_number: [c_char; 32],
pub pre_release: [c_char; 48],
pub build_metadata: [c_char; 48],
}Expand description
Holds the library’s version information.
Fields§
§version: webview_version_tThe elements of the version number.
version_number: [c_char; 32]SemVer 2.0.0 version number in MAJOR.MINOR.PATCH format.
pre_release: [c_char; 48]SemVer 2.0.0 pre-release labels prefixed with “-” if specified, otherwise an empty string.
build_metadata: [c_char; 48]SemVer 2.0.0 build metadata prefixed with “+”, otherwise an empty string.
Trait Implementations§
Source§impl Clone for webview_version_info_t
impl Clone for webview_version_info_t
Source§fn clone(&self) -> webview_version_info_t
fn clone(&self) -> webview_version_info_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_info_t
impl Debug for webview_version_info_t
impl Copy for webview_version_info_t
Auto Trait Implementations§
impl Freeze for webview_version_info_t
impl RefUnwindSafe for webview_version_info_t
impl Send for webview_version_info_t
impl Sync for webview_version_info_t
impl Unpin for webview_version_info_t
impl UnwindSafe for webview_version_info_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