pub enum ActionDecodingError {
Show 28 variants
NoData,
UnknownOpCode(u8),
Nop(StdError),
ReadFileData(StdError),
ReadFileProperties(StdError),
WriteFileData(StdError),
WriteFileProperties(HeaderActionDecodingError),
ActionQuery(QueryDecodingError),
BreakQuery(QueryDecodingError),
PermissionRequest(PermissionDecodingError),
VerifyChecksum(QueryDecodingError),
ExistFile(StdError),
CreateNewFile(HeaderActionDecodingError),
DeleteFile(StdError),
RestoreFile(StdError),
FlushFile(StdError),
CopyFile(StdError),
ExecuteFile(StdError),
ReturnFileDataAction(StdError),
ReturnFilePropertiesAction(HeaderActionDecodingError),
Status(StatusDecodingError),
ResponseTag(StdError),
Chunk(StdError),
Logic(StdError),
Forward(InterfaceConfigurationDecodingError),
IndirectForward(StdError),
RequestTag(StdError),
Extension,
}
Variants§
NoData
UnknownOpCode(u8)
Nop(StdError)
ReadFileData(StdError)
ReadFileProperties(StdError)
WriteFileData(StdError)
WriteFileProperties(HeaderActionDecodingError)
ActionQuery(QueryDecodingError)
BreakQuery(QueryDecodingError)
PermissionRequest(PermissionDecodingError)
VerifyChecksum(QueryDecodingError)
ExistFile(StdError)
CreateNewFile(HeaderActionDecodingError)
DeleteFile(StdError)
RestoreFile(StdError)
FlushFile(StdError)
CopyFile(StdError)
ExecuteFile(StdError)
ReturnFileDataAction(StdError)
ReturnFilePropertiesAction(HeaderActionDecodingError)
Status(StatusDecodingError)
ResponseTag(StdError)
Chunk(StdError)
Logic(StdError)
Forward(InterfaceConfigurationDecodingError)
IndirectForward(StdError)
RequestTag(StdError)
Extension
Trait Implementations§
Source§impl Clone for ActionDecodingError
impl Clone for ActionDecodingError
Source§fn clone(&self) -> ActionDecodingError
fn clone(&self) -> ActionDecodingError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ActionDecodingError
impl Debug for ActionDecodingError
Source§impl PartialEq for ActionDecodingError
impl PartialEq for ActionDecodingError
impl Copy for ActionDecodingError
impl StructuralPartialEq for ActionDecodingError
Auto Trait Implementations§
impl Freeze for ActionDecodingError
impl RefUnwindSafe for ActionDecodingError
impl Send for ActionDecodingError
impl Sync for ActionDecodingError
impl Unpin for ActionDecodingError
impl UnwindSafe for ActionDecodingError
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