pub struct ReportStatusResultReturnObject(pub Option<Value>);Expand description
Reports the successful result of a |SCardStatus| call.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa
Tuple Fields§
§0: Option<Value>Trait Implementations§
Source§impl Clone for ReportStatusResultReturnObject
impl Clone for ReportStatusResultReturnObject
Source§fn clone(&self) -> ReportStatusResultReturnObject
fn clone(&self) -> ReportStatusResultReturnObject
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 ReportStatusResultReturnObject
impl<'de> Deserialize<'de> for ReportStatusResultReturnObject
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 ReportStatusResultReturnObject
impl PartialEq for ReportStatusResultReturnObject
Source§fn eq(&self, other: &ReportStatusResultReturnObject) -> bool
fn eq(&self, other: &ReportStatusResultReturnObject) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReportStatusResultReturnObject
Auto Trait Implementations§
impl Freeze for ReportStatusResultReturnObject
impl RefUnwindSafe for ReportStatusResultReturnObject
impl Send for ReportStatusResultReturnObject
impl Sync for ReportStatusResultReturnObject
impl Unpin for ReportStatusResultReturnObject
impl UnsafeUnpin for ReportStatusResultReturnObject
impl UnwindSafe for ReportStatusResultReturnObject
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