Enum substrate_rpc_client::Error
pub enum Error {
Show 26 variants
Call(CallError),
Transport(Error),
Internal(SendError),
InvalidResponse(Mismatch<String>),
RestartNeeded(String),
ParseError(Error),
InvalidSubscriptionId,
InvalidRequestId,
UnregisteredNotification(String),
DuplicateRequestId,
MethodAlreadyRegistered(String),
MethodNotFound(String),
SubscriptionNameConflict(String),
RequestTimeout,
MaxSlotsExceeded,
AlreadyStopped,
EmptyAllowList(&'static str),
HttpHeaderRejected(&'static str, String),
ResourceAtCapacity(&'static str),
ResourceNameAlreadyTaken(&'static str),
ResourceNameNotFoundForMethod(&'static str, &'static str),
UninitializedMethod(Box<str, Global>),
MaxResourcesReached,
Custom(String),
HttpNotImplemented,
EmptyBatchRequest,
}
Expand description
Error type.
Variants§
Call(CallError)
Error that occurs when a call failed.
Transport(Error)
Networking error or error on the low-level protocol layer.
Internal(SendError)
Frontend/backend channel error.
InvalidResponse(Mismatch<String>)
Invalid response,
RestartNeeded(String)
The background task has been terminated.
ParseError(Error)
Failed to parse the data.
InvalidSubscriptionId
Invalid subscription ID.
InvalidRequestId
Invalid request ID.
UnregisteredNotification(String)
Client received a notification with an unregistered method
DuplicateRequestId
A request with the same request ID has already been registered.
MethodAlreadyRegistered(String)
Method was already registered.
MethodNotFound(String)
Method with that name has not yet been registered.
SubscriptionNameConflict(String)
Subscribe and unsubscribe method names are the same.
RequestTimeout
Request timeout
MaxSlotsExceeded
Configured max number of request slots exceeded.
AlreadyStopped
Attempted to stop server that is already stopped.
EmptyAllowList(&'static str)
List passed into access control based on HTTP header verification.
HttpHeaderRejected(&'static str, String)
Access control verification of HTTP headers failed.
ResourceAtCapacity(&'static str)
Failed to execute a method because a resource was already at capacity
ResourceNameAlreadyTaken(&'static str)
Failed to register a resource due to a name conflict
ResourceNameNotFoundForMethod(&'static str, &'static str)
Failed to initialize resources for a method at startup
UninitializedMethod(Box<str, Global>)
Trying to claim resources for a method execution, but the method resources have not been initialized
MaxResourcesReached
Failed to register a resource due to a maximum number of resources already registered
Custom(String)
Custom error.
HttpNotImplemented
Not implemented for HTTP clients.
EmptyBatchRequest
Empty batch request.
Implementations§
Trait Implementations§
§impl Error for Error
impl Error for Error
§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
Auto Trait Implementations§
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.