Enum fuse_backend_rs::Error [−][src]
pub enum Error { DecodeMessage(Error), EncodeMessage(Error), MissingParameter, InvalidCString(FromBytesWithNulError), InvalidHeaderLength, InvalidXattrSize((u32, usize)), }
Expand description
Error codes for Fuse related operations.
Variants
Failed to decode protocol messages.
Tuple Fields of DecodeMessage
0: Error
Failed to encode protocol messages.
Tuple Fields of EncodeMessage
0: Error
One or more parameters are missing.
A C string parameter is invalid.
Tuple Fields of InvalidCString
The len
field of the header is too small.
The size
field of the SetxattrIn
message does not match the length
of the decoded value.