pub struct IdlErrorCode {
pub code: u32,
pub name: String,
pub msg: Option<String>,
}Fields§
§code: u32§name: String§msg: Option<String>Trait Implementations§
Source§impl Clone for IdlErrorCode
impl Clone for IdlErrorCode
Source§fn clone(&self) -> IdlErrorCode
fn clone(&self) -> IdlErrorCode
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 IdlErrorCode
impl Debug for IdlErrorCode
Source§impl<'de> Deserialize<'de> for IdlErrorCode
impl<'de> Deserialize<'de> for IdlErrorCode
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 IdlErrorCode
impl PartialEq for IdlErrorCode
Source§impl Serialize for IdlErrorCode
impl Serialize for IdlErrorCode
impl Eq for IdlErrorCode
impl StructuralPartialEq for IdlErrorCode
Auto Trait Implementations§
impl Freeze for IdlErrorCode
impl RefUnwindSafe for IdlErrorCode
impl Send for IdlErrorCode
impl Sync for IdlErrorCode
impl Unpin for IdlErrorCode
impl UnsafeUnpin for IdlErrorCode
impl UnwindSafe for IdlErrorCode
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