#[repr(u8)]pub enum PathType {
Invalid = 0,
Empty = 1,
Binary = 2,
ASCII = 3,
UTF16 = 4,
}
Expand description
Kind of file path.
Variants§
Invalid = 0
Invalid path.
Empty = 1
Empty path.
Binary = 2
Binary path.
Its meaning differs depending on the Archive it is used on.
ASCII = 3
ASCII path.
UTF16 = 4
UTF-16 path.
Trait Implementations§
source§impl From<PathType> for FS_PathType
impl From<PathType> for FS_PathType
impl Copy for PathType
impl Eq for PathType
impl StructuralPartialEq for PathType
Auto Trait Implementations§
impl RefUnwindSafe for PathType
impl Send for PathType
impl Sync for PathType
impl Unpin for PathType
impl UnwindSafe for PathType
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more