pub struct ReportBeginTransactionResultParams {
pub requestId: String,
pub handle: i64,
}Expand description
Reports the result of a |SCardBeginTransaction| call. On success, this creates a new transaction object.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaddb835dce01a0da1d6ca02d33ee7d861 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardbegintransaction
Fields§
§requestId: String§handle: i64Trait Implementations§
Source§impl Clone for ReportBeginTransactionResultParams
impl Clone for ReportBeginTransactionResultParams
Source§fn clone(&self) -> ReportBeginTransactionResultParams
fn clone(&self) -> ReportBeginTransactionResultParams
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 Default for ReportBeginTransactionResultParams
impl Default for ReportBeginTransactionResultParams
Source§fn default() -> ReportBeginTransactionResultParams
fn default() -> ReportBeginTransactionResultParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReportBeginTransactionResultParams
impl<'de> Deserialize<'de> for ReportBeginTransactionResultParams
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 ReportBeginTransactionResultParams
impl RefUnwindSafe for ReportBeginTransactionResultParams
impl Send for ReportBeginTransactionResultParams
impl Sync for ReportBeginTransactionResultParams
impl Unpin for ReportBeginTransactionResultParams
impl UnsafeUnpin for ReportBeginTransactionResultParams
impl UnwindSafe for ReportBeginTransactionResultParams
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