pub enum MessageHeaderFieldsError {
Show 27 variants
Struct(Value),
Length(usize),
Variant(Value),
Byte(Value),
Path(Value),
Interface(Value),
InterfaceError(InterfaceError),
Member(Value),
MemberError(MemberError),
ErrorName(Value),
ErrorError(ErrorError),
ReplySerial(Value),
BusError(BusError),
Destination(Value),
Sender(Value),
Signature(Value),
UnixFDs(Value),
InvalidNumber(u8),
MultiplePath(Value),
MultipleInterface(Value),
MultipleMember(Value),
MultipleErrorName(Value),
MultipleReplySerial(Value),
MultipleDestination(Value),
MultipleSender(Value),
MultipleSignature(Value),
MultipleUnixFDs(Value),
}
Variants§
Struct(Value)
Length(usize)
Variant(Value)
Byte(Value)
Path(Value)
Interface(Value)
InterfaceError(InterfaceError)
Member(Value)
MemberError(MemberError)
ErrorName(Value)
ErrorError(ErrorError)
ReplySerial(Value)
BusError(BusError)
Destination(Value)
Sender(Value)
Signature(Value)
UnixFDs(Value)
InvalidNumber(u8)
MultiplePath(Value)
MultipleInterface(Value)
MultipleMember(Value)
MultipleErrorName(Value)
MultipleReplySerial(Value)
MultipleDestination(Value)
MultipleSender(Value)
MultipleSignature(Value)
MultipleUnixFDs(Value)
Trait Implementations§
Source§impl Debug for FieldsError
impl Debug for FieldsError
Source§impl Display for FieldsError
impl Display for FieldsError
Source§impl Error for FieldsError
impl Error for FieldsError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Source§impl From<BusError> for FieldsError
impl From<BusError> for FieldsError
Source§impl From<ErrorError> for FieldsError
impl From<ErrorError> for FieldsError
Source§fn from(source: ErrorError) -> Self
fn from(source: ErrorError) -> Self
Converts to this type from the input type.
Source§impl From<FieldsError> for DecodeError
impl From<FieldsError> for DecodeError
Source§fn from(source: MessageHeaderFieldsError) -> Self
fn from(source: MessageHeaderFieldsError) -> Self
Converts to this type from the input type.
Source§impl From<InterfaceError> for FieldsError
impl From<InterfaceError> for FieldsError
Source§fn from(source: InterfaceError) -> Self
fn from(source: InterfaceError) -> Self
Converts to this type from the input type.
Source§impl From<MemberError> for FieldsError
impl From<MemberError> for FieldsError
Source§fn from(source: MemberError) -> Self
fn from(source: MemberError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FieldsError
impl PartialEq for FieldsError
impl StructuralPartialEq for FieldsError
Auto Trait Implementations§
impl Freeze for FieldsError
impl RefUnwindSafe for FieldsError
impl Send for FieldsError
impl Sync for FieldsError
impl Unpin for FieldsError
impl UnwindSafe for FieldsError
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