[][src]Enum casper_client::Error

pub enum Error {
    FailedToParseKey,
    FailedToParseURef(URefFromStrError),
    FailedToParseInt(ParseIntError),
    FailedToParseTimeDiff(DurationError),
    FailedToParseTimestamp(TimestampError),
    FailedToParseUint(UIntParseError),
    FailedToGetResponse(Error),
    FailedToParseResponse(Error),
    FileAlreadyExists(PathBuf),
    UnsupportedAlgorithm(String),
    ResponseIsError(Error),
    InvalidJson(Error),
    InvalidRpcResponse(JsonRpc),
    FailedSending(JsonRpc),
    IoError {
        context: String,
        error: Error,
    },
    ToBytesError(ToBytesError),
    CryptoError(CryptoError),
    InvalidCLValue(String),
    InvalidArgument(String),
    InvalidResponse(ValidateResponseError),
}

Error that can be returned by casper-client.

Variants

FailedToParseKey

Failed to parse a Key from a formatted string.

FailedToParseURef(URefFromStrError)

Failed to parse a URef from a formatted string.

FailedToParseInt(ParseIntError)

Failed to parse an integer from a string.

FailedToParseTimeDiff(DurationError)

Failed to parse a TimeDiff from a formatted string.

FailedToParseTimestamp(TimestampError)

Failed to parse a Timestamp from a formatted string.

FailedToParseUint(UIntParseError)

Failed to parse a U128, U256 or U512 from a string.

FailedToGetResponse(Error)

Failed to get a response from the node.

FailedToParseResponse(Error)

Failed to parse the response from the node.

FileAlreadyExists(PathBuf)

Failed to create new key file because it already exists.

UnsupportedAlgorithm(String)

Unsupported keygen algorithm.

ResponseIsError(Error)

JSON-RPC error returned from the node.

InvalidJson(Error)

Invalid JSON returned from the node.

InvalidRpcResponse(JsonRpc)

Invalid response returned from the node.

FailedSending(JsonRpc)

Failed to send the request to the node.

IoError

Context-adding wrapper for std::io::Error.

Fields of IoError

context: String

Contextual description of where this error occurred including relevant paths, filenames, etc.

error: Error

std::io::Error raised during the operation in question.

ToBytesError(ToBytesError)

Failed to serialize to bytes.

CryptoError(CryptoError)

Cryptographic error.

InvalidCLValue(String)

Invalid CLValue.

InvalidArgument(String)

Invalid argument.

InvalidResponse(ValidateResponseError)

Failed to validate response.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<FromStrError> for Error[src]

impl From<ParseIntError> for Error[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]