pub struct AppVersion {
    pub build_id: Option<String>,
    pub code_name: Option<String>,
    pub version_string: Option<String>,
    pub source_repository: Option<String>,
    pub source_stamp: Option<String>,
}
Expand description

Details about the version of a Firefox build.

Fields

build_id: Option<String>

Unique date-based id for a build

code_name: Option<String>

Channel name

version_string: Option<String>

Version number e.g. 55.0a1

source_repository: Option<String>

Url of the respoistory from which the build was made

source_stamp: Option<String>

Commit ID of the build

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.