pub struct Confirmation {
pub id: String,
pub conf_type: ConfirmationType,
pub creator: String,
pub key: String,
pub title: String,
pub receiving: String,
pub sending: String,
pub summary: Vec<String>,
pub time: String,
pub timestamp: u64,
pub icon: String,
pub type_name: Option<String>,
}Expand description
A mobile confirmation requiring user action.
Fields§
§id: StringUnique confirmation ID.
conf_type: ConfirmationTypeConfirmation type.
creator: StringCreator ID (trade offer ID for trades, listing ID for market).
key: StringConfirmation key (nonce).
title: StringTitle/headline.
receiving: StringWhat items/value you are receiving.
sending: StringWhat items/value you are sending.
summary: Vec<String>Summary lines (GAS format: ["sending", "receiving"]).
time: StringCreation time as ISO string.
timestamp: u64Creation timestamp.
icon: StringIcon URL.
type_name: Option<String>Type name string (from GAS/API).
Implementations§
Source§impl Confirmation
impl Confirmation
Sourcepub fn from_api(data: &Value) -> Result<Self, SteamUserError>
pub fn from_api(data: &Value) -> Result<Self, SteamUserError>
Create a new Confirmation from API response data.
Returns Err(SteamUserError::MalformedResponse) if a required field
(id, type, creator_id, nonce, creation_time) is missing or
has the wrong shape. Previously this returned Option<Self> and
silently masked typed parse failures behind None.
Trait Implementations§
Source§impl Clone for Confirmation
impl Clone for Confirmation
Source§fn clone(&self) -> Confirmation
fn clone(&self) -> Confirmation
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 Confirmation
impl Debug for Confirmation
Source§impl Default for Confirmation
impl Default for Confirmation
Source§fn default() -> Confirmation
fn default() -> Confirmation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Confirmation
impl<'de> Deserialize<'de> for Confirmation
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 Confirmation
impl RefUnwindSafe for Confirmation
impl Send for Confirmation
impl Sync for Confirmation
impl Unpin for Confirmation
impl UnsafeUnpin for Confirmation
impl UnwindSafe for Confirmation
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().