pub struct ReportError {
pub request_id: String,
pub result_code: ResultCode,
}Expand description
Reports an error result for the given request.
Fields§
§request_id: String§result_code: ResultCodeTrait Implementations§
Source§impl Clone for ReportError
impl Clone for ReportError
Source§fn clone(&self) -> ReportError
fn clone(&self) -> ReportError
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 ReportError
impl Debug for ReportError
Source§impl<'de> Deserialize<'de> for ReportError
impl<'de> Deserialize<'de> for ReportError
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 ReportError
impl Method for ReportError
const NAME: &'static str = "SmartCardEmulation.reportError"
type ReturnObject = ReportErrorReturnObject
fn to_method_call(self, call_id: CallId) -> MethodCall<Self>where
Self: Sized,
Source§impl PartialEq for ReportError
impl PartialEq for ReportError
Source§impl Serialize for ReportError
impl Serialize for ReportError
impl StructuralPartialEq for ReportError
Auto Trait Implementations§
impl Freeze for ReportError
impl RefUnwindSafe for ReportError
impl Send for ReportError
impl Sync for ReportError
impl Unpin for ReportError
impl UnsafeUnpin for ReportError
impl UnwindSafe for ReportError
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