pub struct ReportBeginTransactionResultReturnObject(pub Option<Value>);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
Tuple Fields§
§0: Option<Value>Trait Implementations§
Source§impl Clone for ReportBeginTransactionResultReturnObject
impl Clone for ReportBeginTransactionResultReturnObject
Source§fn clone(&self) -> ReportBeginTransactionResultReturnObject
fn clone(&self) -> ReportBeginTransactionResultReturnObject
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<'de> Deserialize<'de> for ReportBeginTransactionResultReturnObject
impl<'de> Deserialize<'de> for ReportBeginTransactionResultReturnObject
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
Source§impl PartialEq for ReportBeginTransactionResultReturnObject
impl PartialEq for ReportBeginTransactionResultReturnObject
Source§fn eq(&self, other: &ReportBeginTransactionResultReturnObject) -> bool
fn eq(&self, other: &ReportBeginTransactionResultReturnObject) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReportBeginTransactionResultReturnObject
Auto Trait Implementations§
impl Freeze for ReportBeginTransactionResultReturnObject
impl RefUnwindSafe for ReportBeginTransactionResultReturnObject
impl Send for ReportBeginTransactionResultReturnObject
impl Sync for ReportBeginTransactionResultReturnObject
impl Unpin for ReportBeginTransactionResultReturnObject
impl UnsafeUnpin for ReportBeginTransactionResultReturnObject
impl UnwindSafe for ReportBeginTransactionResultReturnObject
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