Struct solana_client::client_error::ClientError
source · pub struct ClientError {
pub request: Option<RpcRequest>,
pub kind: ClientErrorKind,
}
Fields
request: Option<RpcRequest>
kind: ClientErrorKind
Implementations
sourceimpl ClientError
impl ClientError
pub fn new_with_request(kind: ClientErrorKind, request: RpcRequest) -> Self
pub fn into_with_request(self, request: RpcRequest) -> Self
pub fn request(&self) -> Option<&RpcRequest>
pub fn kind(&self) -> &ClientErrorKind
pub fn get_transaction_error(&self) -> Option<TransactionError>
Trait Implementations
sourceimpl Debug for ClientError
impl Debug for ClientError
sourceimpl Display for ClientError
impl Display for ClientError
sourceimpl Error for ClientError
impl Error for ClientError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<ClientError> for TpuSenderError
impl From<ClientError> for TpuSenderError
sourcefn from(source: ClientError) -> Self
fn from(source: ClientError) -> Self
Converts to this type from the input type.
sourceimpl From<ClientError> for TransportError
impl From<ClientError> for TransportError
sourcefn from(client_error: ClientError) -> Self
fn from(client_error: ClientError) -> Self
Converts to this type from the input type.
sourceimpl From<ClientErrorKind> for ClientError
impl From<ClientErrorKind> for ClientError
sourcefn from(kind: ClientErrorKind) -> Self
fn from(kind: ClientErrorKind) -> Self
Converts to this type from the input type.
sourceimpl From<Error> for ClientError
impl From<Error> for ClientError
sourceimpl From<Error> for ClientError
impl From<Error> for ClientError
sourceimpl From<Error> for ClientError
impl From<Error> for ClientError
sourceimpl From<FaucetError> for ClientError
impl From<FaucetError> for ClientError
sourcefn from(err: FaucetError) -> Self
fn from(err: FaucetError) -> Self
Converts to this type from the input type.
sourceimpl From<RpcError> for ClientError
impl From<RpcError> for ClientError
sourceimpl From<SignerError> for ClientError
impl From<SignerError> for ClientError
sourcefn from(err: SignerError) -> Self
fn from(err: SignerError) -> Self
Converts to this type from the input type.
sourceimpl From<TransactionError> for ClientError
impl From<TransactionError> for ClientError
sourcefn from(err: TransactionError) -> Self
fn from(err: TransactionError) -> Self
Converts to this type from the input type.
sourceimpl From<TransportError> for ClientError
impl From<TransportError> for ClientError
sourcefn from(err: TransportError) -> Self
fn from(err: TransportError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ClientError
impl Send for ClientError
impl Sync for ClientError
impl Unpin for ClientError
impl !UnwindSafe for ClientError
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more