pub struct UniverseGamepass {
pub id: u64,
pub name: String,
pub display_name: String,
pub price: Option<u64>,
pub product_id: Option<u64>,
pub owned: bool,
pub seller_id: Option<u64>,
pub seller_name: String,
}Fields§
§id: u64§name: String§display_name: String§price: Option<u64>§product_id: Option<u64>§owned: bool§seller_id: Option<u64>§seller_name: StringTrait Implementations§
Source§impl Clone for UniverseGamepass
impl Clone for UniverseGamepass
Source§fn clone(&self) -> UniverseGamepass
fn clone(&self) -> UniverseGamepass
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 UniverseGamepass
impl Debug for UniverseGamepass
Source§impl<'de> Deserialize<'de> for UniverseGamepass
impl<'de> Deserialize<'de> for UniverseGamepass
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
impl Eq for UniverseGamepass
Source§impl PartialEq for UniverseGamepass
impl PartialEq for UniverseGamepass
Source§impl Serialize for UniverseGamepass
impl Serialize for UniverseGamepass
impl StructuralPartialEq for UniverseGamepass
Auto Trait Implementations§
impl Freeze for UniverseGamepass
impl RefUnwindSafe for UniverseGamepass
impl Send for UniverseGamepass
impl Sync for UniverseGamepass
impl Unpin for UniverseGamepass
impl UnsafeUnpin for UniverseGamepass
impl UnwindSafe for UniverseGamepass
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