pub struct ReportListReadersResult {
pub request_id: String,
pub readers: Vec<String>,
}Expand description
Reports the successful result of a |SCardListReaders| call.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa
Fields§
§request_id: String§readers: Vec<String>Trait Implementations§
Source§impl Clone for ReportListReadersResult
impl Clone for ReportListReadersResult
Source§fn clone(&self) -> ReportListReadersResult
fn clone(&self) -> ReportListReadersResult
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 Debug for ReportListReadersResult
impl Debug for ReportListReadersResult
Source§impl<'de> Deserialize<'de> for ReportListReadersResult
impl<'de> Deserialize<'de> for ReportListReadersResult
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 Method for ReportListReadersResult
impl Method for ReportListReadersResult
const NAME: &'static str = "SmartCardEmulation.reportListReadersResult"
type ReturnObject = ReportListReadersResultReturnObject
fn to_method_call(self, call_id: CallId) -> MethodCall<Self>where
Self: Sized,
Source§impl PartialEq for ReportListReadersResult
impl PartialEq for ReportListReadersResult
Source§impl Serialize for ReportListReadersResult
impl Serialize for ReportListReadersResult
impl StructuralPartialEq for ReportListReadersResult
Auto Trait Implementations§
impl Freeze for ReportListReadersResult
impl RefUnwindSafe for ReportListReadersResult
impl Send for ReportListReadersResult
impl Sync for ReportListReadersResult
impl Unpin for ReportListReadersResult
impl UnsafeUnpin for ReportListReadersResult
impl UnwindSafe for ReportListReadersResult
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