pub enum PSArchiveFlags {
RELATIVE,
IGNORECASE,
ABSOLUTE,
ERROR,
}
Expand description
PSArchiveFlags is the flags for the Playstation Archive file
Variants§
RELATIVE
Relative paths
IGNORECASE
Case-insensitive paths
ABSOLUTE
Absolute paths
ERROR
Error parsing flags
Trait Implementations§
Source§impl Clone for PSArchiveFlags
impl Clone for PSArchiveFlags
Source§fn clone(&self) -> PSArchiveFlags
fn clone(&self) -> PSArchiveFlags
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 PSArchiveFlags
impl Debug for PSArchiveFlags
Source§impl Default for PSArchiveFlags
impl Default for PSArchiveFlags
Source§impl Display for PSArchiveFlags
impl Display for PSArchiveFlags
Source§impl Parsable for PSArchiveFlags
Should parse 4 bytes, any more or less will result in an error
impl Parsable for PSArchiveFlags
Should parse 4 bytes, any more or less will result in an error
Source§impl PartialEq for PSArchiveFlags
impl PartialEq for PSArchiveFlags
impl Eq for PSArchiveFlags
impl StructuralPartialEq for PSArchiveFlags
Auto Trait Implementations§
impl Freeze for PSArchiveFlags
impl RefUnwindSafe for PSArchiveFlags
impl Send for PSArchiveFlags
impl Sync for PSArchiveFlags
impl Unpin for PSArchiveFlags
impl UnwindSafe for PSArchiveFlags
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