Struct webkit2gtk::ApplicationInfo
source · [−]#[repr(transparent)]pub struct ApplicationInfo { /* private fields */ }
v2_18
only.Expand description
Information about an application running in automation mode.
Implementations
sourceimpl ApplicationInfo
impl ApplicationInfo
pub fn as_ptr(&self) -> *mut WebKitApplicationInfo
sourceimpl ApplicationInfo
impl ApplicationInfo
sourcepub fn new() -> ApplicationInfo
pub fn new() -> ApplicationInfo
sourcepub fn name(&self) -> Option<GString>
pub fn name(&self) -> Option<GString>
Get the name of the application.
If set_name()
hasn’t been
called with a valid name, this returns g_get_prgname()
.
Returns
the application name
sourcepub fn version(&self) -> (u64, u64, u64)
pub fn version(&self) -> (u64, u64, u64)
Get the application version previously set with set_version()
.
Returns
major
return location for the major version number
minor
return location for the minor version number
micro
return location for the micro version number
sourcepub fn set_version(&self, major: u64, minor: u64, micro: u64)
pub fn set_version(&self, major: u64, minor: u64, micro: u64)
Set the application version.
If the application doesn’t use the format major.minor.micro you can pass 0 as the micro to use major.minor, or pass 0 as both micro and minor to use only major number. Any other format must be converted to major.minor.micro so that it can be used in version comparisons.
major
the major version number
minor
the minor version number
micro
the micro version number
Trait Implementations
sourceimpl Clone for ApplicationInfo
impl Clone for ApplicationInfo
sourceimpl Debug for ApplicationInfo
impl Debug for ApplicationInfo
sourceimpl Default for ApplicationInfo
impl Default for ApplicationInfo
sourceimpl Hash for ApplicationInfo
impl Hash for ApplicationInfo
sourceimpl Ord for ApplicationInfo
impl Ord for ApplicationInfo
sourcefn cmp(&self, other: &ApplicationInfo) -> Ordering
fn cmp(&self, other: &ApplicationInfo) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialEq<ApplicationInfo> for ApplicationInfo
impl PartialEq<ApplicationInfo> for ApplicationInfo
sourcefn eq(&self, other: &ApplicationInfo) -> bool
fn eq(&self, other: &ApplicationInfo) -> bool
sourceimpl PartialOrd<ApplicationInfo> for ApplicationInfo
impl PartialOrd<ApplicationInfo> for ApplicationInfo
sourcefn partial_cmp(&self, other: &ApplicationInfo) -> Option<Ordering>
fn partial_cmp(&self, other: &ApplicationInfo) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresourceimpl StaticType for ApplicationInfo
impl StaticType for ApplicationInfo
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.