pub enum HttpOutcallError {
IcError {
code: RejectionCode,
message: String,
},
InvalidHttpJsonRpcResponse {
status: u16,
body: String,
parsingError: Option<String>,
},
}Variants§
Trait Implementations§
Source§impl CandidType for HttpOutcallError
impl CandidType for HttpOutcallError
Source§impl Clone for HttpOutcallError
impl Clone for HttpOutcallError
Source§fn clone(&self) -> HttpOutcallError
fn clone(&self) -> HttpOutcallError
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 HttpOutcallError
impl Debug for HttpOutcallError
Source§impl<'de> Deserialize<'de> for HttpOutcallError
impl<'de> Deserialize<'de> for HttpOutcallError
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
Auto Trait Implementations§
impl Freeze for HttpOutcallError
impl RefUnwindSafe for HttpOutcallError
impl Send for HttpOutcallError
impl Sync for HttpOutcallError
impl Unpin for HttpOutcallError
impl UnwindSafe for HttpOutcallError
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