pub struct BatchEntryErr<'a>(/* private fields */);
Expand description
Error response that can used to indicate an error in JSON-RPC request batch request.
This is used in the Batch
type to indicate an error in the batch entry.
Implementations§
Source§impl<'a> BatchEntryErr<'a>
impl<'a> BatchEntryErr<'a>
Sourcepub fn new(id: Id<'a>, err: ErrorObject<'a>) -> Self
pub fn new(id: Id<'a>, err: ErrorObject<'a>) -> Self
Create a new error response.
Sourcepub fn into_parts(self) -> (ErrorObject<'a>, Id<'a>)
pub fn into_parts(self) -> (ErrorObject<'a>, Id<'a>)
Get the parts of the error response.q
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for BatchEntryErr<'a>
impl<'a> !RefUnwindSafe for BatchEntryErr<'a>
impl<'a> Send for BatchEntryErr<'a>
impl<'a> Sync for BatchEntryErr<'a>
impl<'a> Unpin for BatchEntryErr<'a>
impl<'a> !UnwindSafe for BatchEntryErr<'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