pub struct PageConfig {Show 43 fields
pub euniverse: Option<i32>,
pub web_universe: Option<String>,
pub language: Option<String>,
pub country: Option<String>,
pub platform: Option<String>,
pub website_id: Option<String>,
pub build_timestamp: Option<u64>,
pub page_timestamp: Option<u64>,
pub now: Option<u64>,
pub erealm: Option<i32>,
pub snr: Option<String>,
pub in_client: Option<bool>,
pub in_tenfoot: Option<bool>,
pub in_gamepadui: Option<bool>,
pub in_chromeos: Option<bool>,
pub in_mobile_webview: Option<bool>,
pub from_web: Option<bool>,
pub use_popups: Option<bool>,
pub community_base_url: Option<String>,
pub store_base_url: Option<String>,
pub store_checkout_base_url: Option<String>,
pub help_base_url: Option<String>,
pub webapi_base_url: Option<String>,
pub avatar_base_url: Option<String>,
pub login_base_url: Option<String>,
pub media_cdn_url: Option<String>,
pub media_cdn_community_url: Option<String>,
pub community_cdn_url: Option<String>,
pub community_cdn_asset_url: Option<String>,
pub store_cdn_url: Option<String>,
pub store_icon_base_url: Option<String>,
pub store_item_base_url: Option<String>,
pub video_cdn_url: Option<String>,
pub token_url: Option<String>,
pub steamtv_base_url: Option<String>,
pub partner_base_url: Option<String>,
pub support_base_url: Option<String>,
pub chat_base_url: Option<String>,
pub public_shared_url: Option<String>,
pub base_url_shared_cdn: Option<String>,
pub base_url_store_cdn_assets: Option<String>,
pub community_assets_base_url: Option<String>,
pub clan_cdn_asset_url: Option<String>,
}Expand description
Store page configuration block (data-config).
Contains CDN base URLs, build metadata, and runtime flags.
Fields§
§euniverse: Option<i32>§web_universe: Option<String>§language: Option<String>§country: Option<String>§platform: Option<String>§website_id: Option<String>§build_timestamp: Option<u64>§page_timestamp: Option<u64>§now: Option<u64>§erealm: Option<i32>§snr: Option<String>§in_client: Option<bool>§in_tenfoot: Option<bool>§in_gamepadui: Option<bool>§in_chromeos: Option<bool>§in_mobile_webview: Option<bool>§from_web: Option<bool>§use_popups: Option<bool>§community_base_url: Option<String>§store_base_url: Option<String>§store_checkout_base_url: Option<String>§help_base_url: Option<String>§webapi_base_url: Option<String>§avatar_base_url: Option<String>§login_base_url: Option<String>§media_cdn_url: Option<String>§media_cdn_community_url: Option<String>§community_cdn_url: Option<String>§community_cdn_asset_url: Option<String>§store_cdn_url: Option<String>§store_icon_base_url: Option<String>§store_item_base_url: Option<String>§video_cdn_url: Option<String>§token_url: Option<String>§steamtv_base_url: Option<String>§partner_base_url: Option<String>§support_base_url: Option<String>§chat_base_url: Option<String>§base_url_store_cdn_assets: Option<String>§community_assets_base_url: Option<String>§clan_cdn_asset_url: Option<String>Trait Implementations§
Source§impl Clone for PageConfig
impl Clone for PageConfig
Source§fn clone(&self) -> PageConfig
fn clone(&self) -> PageConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PageConfig
impl Debug for PageConfig
Source§impl Default for PageConfig
impl Default for PageConfig
Source§fn default() -> PageConfig
fn default() -> PageConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageConfig
impl<'de> Deserialize<'de> for PageConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PageConfig
impl RefUnwindSafe for PageConfig
impl Send for PageConfig
impl Sync for PageConfig
impl Unpin for PageConfig
impl UnsafeUnpin for PageConfig
impl UnwindSafe for PageConfig
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().