#[non_exhaustive]pub enum Error {
Show 43 variants
UnexpectedSyncResponse,
InvalidBoolean,
InvalidHeader,
IncompatibleMagicNumber(u8),
UnsupportedWireFormatVersion,
Invalid,
OutOfRange,
ExtraBytes,
ExtraHandles,
NonZeroPadding {
padding_start: usize,
},
MaxRecursionDepth,
NotNullable,
UnexpectedNullRef,
Utf8Error,
VectorTooLong {
max_length: usize,
actual_length: usize,
},
StringTooLong {
max_bytes: usize,
actual_bytes: usize,
},
UnknownOrdinal {
ordinal: u64,
protocol_name: &'static str,
},
UnsupportedMethod {
method_name: &'static str,
protocol_name: &'static str,
},
InvalidBitsValue,
InvalidEnumValue,
UnknownUnionTag,
PollAfterCompletion,
InvalidRequestTxid,
InvalidResponseTxid,
InvalidResponseOrdinal,
InvalidPresenceIndicator,
InvalidInlineBitInEnvelope,
InvalidInlineMarkerInEnvelope,
InvalidNumBytesInEnvelope,
InvalidNumHandlesInEnvelope,
InvalidHostHandle,
IncorrectHandleSubtype {
expected: ObjectType,
received: ObjectType,
},
MissingExpectedHandleRights {
missing_rights: Rights,
},
HandleReplace(Status),
ServerResponseWrite(TransportError),
ServerRequestRead(TransportError),
ServerEpitaphWrite(TransportError),
ClientRead(TransportError),
ClientWrite(TransportError),
ClientCall(Status),
ClientEvent(Status),
ClientChannelClosed {
status: Status,
protocol_name: &'static str,
},
AsyncChannel(Status),
}
Expand description
The error type used by FIDL operations.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UnexpectedSyncResponse
InvalidBoolean
InvalidHeader
IncompatibleMagicNumber(u8)
UnsupportedWireFormatVersion
Invalid
OutOfRange
ExtraBytes
ExtraHandles
NonZeroPadding
Fields
MaxRecursionDepth
NotNullable
UnexpectedNullRef
Utf8Error
VectorTooLong
Fields
StringTooLong
Fields
UnknownOrdinal
UnsupportedMethod
InvalidBitsValue
InvalidEnumValue
UnknownUnionTag
PollAfterCompletion
InvalidRequestTxid
InvalidResponseTxid
InvalidResponseOrdinal
InvalidPresenceIndicator
InvalidInlineBitInEnvelope
InvalidInlineMarkerInEnvelope
InvalidNumBytesInEnvelope
InvalidNumHandlesInEnvelope
InvalidHostHandle
IncorrectHandleSubtype
MissingExpectedHandleRights
HandleReplace(Status)
ServerResponseWrite(TransportError)
ServerRequestRead(TransportError)
ServerEpitaphWrite(TransportError)
ClientRead(TransportError)
ClientWrite(TransportError)
ClientCall(Status)
ClientEvent(Status)
ClientChannelClosed
Fields
AsyncChannel(Status)
Implementations§
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Error
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> 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)