pub struct SchemaResponse {
pub agents: Option<Value>,
pub collectibles: Option<Value>,
pub collections: Vec<Collection>,
pub containers: Option<Value>,
pub custom_stickers: Option<Value>,
pub highlight_reels: Option<Value>,
pub keychains: Option<Value>,
pub music_kits: Option<Value>,
pub rarities: Option<Value>,
pub stickers: Option<Value>,
pub weapons: HashMap<String, Weapon>,
}Expand description
Response from the /schema endpoint containing weapon pricing data
Fields§
§agents: Option<Value>§collectibles: Option<Value>§collections: Vec<Collection>§containers: Option<Value>§custom_stickers: Option<Value>§highlight_reels: Option<Value>§keychains: Option<Value>§music_kits: Option<Value>§rarities: Option<Value>§stickers: Option<Value>§weapons: HashMap<String, Weapon>Implementations§
Source§impl SchemaResponse
impl SchemaResponse
Trait Implementations§
Source§impl Clone for SchemaResponse
impl Clone for SchemaResponse
Source§fn clone(&self) -> SchemaResponse
fn clone(&self) -> SchemaResponse
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 SchemaResponse
impl Debug for SchemaResponse
Source§impl<'de> Deserialize<'de> for SchemaResponse
impl<'de> Deserialize<'de> for SchemaResponse
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 SchemaResponse
impl RefUnwindSafe for SchemaResponse
impl Send for SchemaResponse
impl Sync for SchemaResponse
impl Unpin for SchemaResponse
impl UnwindSafe for SchemaResponse
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