[−][src]Enum file_protocol::ProtocolError
Errors which occur when using FileProtocol
Variants
CorruptFile(String)
A file in storage was corrupt
CborError
An error was encountered by the cbor protocol
Fields of CborError
err: ProtocolError | The specific cbor protocol error |
FinalizeError
An error was encountered when finalizing the file
Fields of FinalizeError
cause: String | The cause of the finalizing failure |
HashMismatch
A hash mismatch was found when finalizing the file
InvalidParam(String, String)
An invalid value was found when parsing a message
MessageCreationError
An error was encountered when creating a message
Fields of MessageCreationError
message: String | The message which failed creation |
err: Error | The underlying serde error encountered |
MessageParseError
A general error was encountered when parsing a message
Fields of MessageParseError
err: String | Underlying error encountered |
MissingParam(String, String)
A value was missing when parsing a message
ReceiveError
An error was encountered when receiving a message
Fields of ReceiveError
err: String | Underlying error encountered |
Serialize
An error was encountered when serializing data
Fields of Serialize
err: Error | Underlying serde error |
StorageError
An error was encountered when writing to or reading from file storage
Fields of StorageError
action: String | The action which generated the error |
err: Error | The underlying std::io::Error |
StorageParseError(String)
An error was encountered when parsing file storage data
ReceiveTimeout
A timeout occurred when receiving data
TransmissionError
An error was encountered when transmitting
Fields of TransmissionError
channel_id: u32 | Channel where the error occurred |
error_message: String | Message from underlying error |
Trait Implementations
impl From<ProtocolError> for ProtocolError
[src]
impl From<ProtocolError> for ProtocolError
fn from(error: ProtocolError) -> Self
[src]
fn from(error: ProtocolError) -> Self
Performs the conversion.
impl From<Error> for ProtocolError
[src]
impl From<Error> for ProtocolError
impl Display for ProtocolError
[src]
impl Display for ProtocolError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Debug for ProtocolError
[src]
impl Debug for ProtocolError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Fail for ProtocolError
[src]
impl Fail for ProtocolError
fn cause(&self) -> Option<&dyn Fail>
[src]
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the Backtrace
carried by this failure, if it carries one. Read more
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
Provides context for this failure. Read more
fn compat(self) -> Compat<Self>
fn compat(self) -> Compat<Self>
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more
Auto Trait Implementations
impl Send for ProtocolError
impl Send for ProtocolError
impl Sync for ProtocolError
impl Sync for ProtocolError
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
impl<T> ToString for T where
T: Display + ?Sized,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> AsFail for T where
T: Fail,
impl<T> AsFail for T where
T: Fail,
fn as_fail(&self) -> &(dyn Fail + 'static)
fn as_fail(&self) -> &(dyn Fail + 'static)
Converts a reference to Self
into a dynamic trait object of Fail
.
impl<E> Fail for E where
E: 'static + Error + Send + Sync,
impl<E> Fail for E where
E: 'static + Error + Send + Sync,
fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the Backtrace
carried by this failure, if it carries one. Read more
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
Provides context for this failure. Read more
fn compat(self) -> Compat<Self>
fn compat(self) -> Compat<Self>
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more