#[non_exhaustive]#[repr(u32)]pub enum ERemoteStorageFilePathType {
k_ERemoteStorageFilePathType_Invalid = 0,
k_ERemoteStorageFilePathType_Absolute = 1,
k_ERemoteStorageFilePathType_APIFilename = 2,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
k_ERemoteStorageFilePathType_Invalid = 0
k_ERemoteStorageFilePathType_Absolute = 1
k_ERemoteStorageFilePathType_APIFilename = 2
Trait Implementations§
Source§impl Clone for ERemoteStorageFilePathType
impl Clone for ERemoteStorageFilePathType
Source§fn clone(&self) -> ERemoteStorageFilePathType
fn clone(&self) -> ERemoteStorageFilePathType
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 ERemoteStorageFilePathType
impl Debug for ERemoteStorageFilePathType
Source§impl Hash for ERemoteStorageFilePathType
impl Hash for ERemoteStorageFilePathType
impl Copy for ERemoteStorageFilePathType
impl Eq for ERemoteStorageFilePathType
impl StructuralPartialEq for ERemoteStorageFilePathType
Auto Trait Implementations§
impl Freeze for ERemoteStorageFilePathType
impl RefUnwindSafe for ERemoteStorageFilePathType
impl Send for ERemoteStorageFilePathType
impl Sync for ERemoteStorageFilePathType
impl Unpin for ERemoteStorageFilePathType
impl UnsafeUnpin for ERemoteStorageFilePathType
impl UnwindSafe for ERemoteStorageFilePathType
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