pub enum AfcStatusCode {
Show 29 variants
Success,
Unknown,
OperationHeaderInvalid,
NoResources,
ReadError,
WriteError,
UnknownPacketType,
InvalidArgument,
ObjectNotFound,
ObjectIsDir,
PermDenied,
ServiceNotConnected,
Timeout,
TooMuchData,
EndOfData,
OpNotSupported,
ObjectExists,
ObjectBusy,
NoSpaceLeft,
OpWouldBlock,
IoError,
OpInterrupted,
OpInProgress,
InternalError,
MuxError,
NoMem,
NotEnoughData,
DirNotEmpty,
Other(u64),
}Expand description
AFC status codes from the device (matches go-ios/ios/afc/errors.go).
Variants§
Success
Unknown
OperationHeaderInvalid
NoResources
ReadError
WriteError
UnknownPacketType
InvalidArgument
ObjectNotFound
ObjectIsDir
PermDenied
ServiceNotConnected
Timeout
TooMuchData
EndOfData
OpNotSupported
ObjectExists
ObjectBusy
NoSpaceLeft
OpWouldBlock
IoError
OpInterrupted
OpInProgress
InternalError
MuxError
NoMem
NotEnoughData
DirNotEmpty
Other(u64)
Implementations§
Trait Implementations§
Source§impl Clone for AfcStatusCode
impl Clone for AfcStatusCode
Source§fn clone(&self) -> AfcStatusCode
fn clone(&self) -> AfcStatusCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AfcStatusCode
impl Debug for AfcStatusCode
Source§impl Display for AfcStatusCode
impl Display for AfcStatusCode
Source§impl PartialEq for AfcStatusCode
impl PartialEq for AfcStatusCode
Source§fn eq(&self, other: &AfcStatusCode) -> bool
fn eq(&self, other: &AfcStatusCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AfcStatusCode
impl Eq for AfcStatusCode
impl StructuralPartialEq for AfcStatusCode
Auto Trait Implementations§
impl Freeze for AfcStatusCode
impl RefUnwindSafe for AfcStatusCode
impl Send for AfcStatusCode
impl Sync for AfcStatusCode
impl Unpin for AfcStatusCode
impl UnsafeUnpin for AfcStatusCode
impl UnwindSafe for AfcStatusCode
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.