Struct jsonrpsee_types::error::ErrorObject
source · pub struct ErrorObject<'a> { /* private fields */ }
Expand description
Implementations§
source§impl<'a> ErrorObject<'a>
impl<'a> ErrorObject<'a>
sourcepub fn owned<S: Serialize>(
code: i32,
message: impl Into<String>,
data: Option<S>
) -> ErrorObject<'static>
pub fn owned<S: Serialize>( code: i32, message: impl Into<String>, data: Option<S> ) -> ErrorObject<'static>
Create a new ErrorObjectOwned
with optional data.
sourcepub fn borrowed(
code: i32,
message: &'a impl AsRef<str>,
data: Option<&'a RawValue>
) -> ErrorObject<'a>
pub fn borrowed( code: i32, message: &'a impl AsRef<str>, data: Option<&'a RawValue> ) -> ErrorObject<'a>
Create a new ErrorObject
with optional data.
sourcepub fn into_owned(self) -> ErrorObject<'static>
pub fn into_owned(self) -> ErrorObject<'static>
Take ownership of the parameters within, if we haven’t already.
sourcepub fn borrow(&'a self) -> ErrorObject<'a>
pub fn borrow(&'a self) -> ErrorObject<'a>
Borrow the current ErrorObject
.
Trait Implementations§
source§impl<'a> Clone for ErrorObject<'a>
impl<'a> Clone for ErrorObject<'a>
source§fn clone(&self) -> ErrorObject<'a>
fn clone(&self) -> ErrorObject<'a>
Returns a copy 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<'a> Debug for ErrorObject<'a>
impl<'a> Debug for ErrorObject<'a>
source§impl<'de, 'a> Deserialize<'de> for ErrorObject<'a>
impl<'de, 'a> Deserialize<'de> for ErrorObject<'a>
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<'a> From<CallError> for ErrorObject<'a>
impl<'a> From<CallError> for ErrorObject<'a>
source§impl<'a> From<ErrorCode> for ErrorObject<'a>
impl<'a> From<ErrorCode> for ErrorObject<'a>
source§impl<'a> From<ErrorObject<'a>> for SubscriptionEmptyError
impl<'a> From<ErrorObject<'a>> for SubscriptionEmptyError
source§fn from(_: ErrorObject<'a>) -> Self
fn from(_: ErrorObject<'a>) -> Self
Converts to this type from the input type.
source§impl<'a> PartialEq<ErrorObject<'a>> for ErrorObject<'a>
impl<'a> PartialEq<ErrorObject<'a>> for ErrorObject<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ErrorObject<'a>
impl<'a> Send for ErrorObject<'a>
impl<'a> Sync for ErrorObject<'a>
impl<'a> Unpin for ErrorObject<'a>
impl<'a> UnwindSafe for ErrorObject<'a>
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