pub struct BuildInfo {
pub branch: String,
pub active: bool,
pub build_key: String,
pub cdn_key: String,
pub cdn_path: String,
pub cdn_hosts: Vec<String>,
pub version: String,
pub product: String,
pub tags: String,
pub keyring: String,
}Expand description
Fields§
§branch: StringBranch name (e.g. "eu", "us").
active: boolWhether this entry is the currently active build.
build_key: StringHex hash of the build configuration file.
cdn_key: StringHex hash of the CDN configuration file.
cdn_path: StringCDN path prefix (e.g. "tpr/wow").
cdn_hosts: Vec<String>CDN host names for downloading remote data.
version: StringBuild version string (e.g. "12.0.1.66192").
product: StringProduct code (e.g. "wow", "wow_classic").
Tags string containing locale, region, and speech options.
keyring: StringHex hash of the keyring used for encrypted content.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuildInfo
impl RefUnwindSafe for BuildInfo
impl Send for BuildInfo
impl Sync for BuildInfo
impl Unpin for BuildInfo
impl UnsafeUnpin for BuildInfo
impl UnwindSafe for BuildInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more