#[repr(u32)]pub enum LoadingState {
Unloading = 0,
Unloaded = 1,
Loading = 2,
Loaded = 3,
Error(Error),
}Variants§
Implementations§
Source§impl LoadingState
impl LoadingState
pub fn try_from_ffi( value: FMOD_STUDIO_LOADING_STATE, error: Option<Error>, ) -> Result<Self>
Trait Implementations§
Source§impl Clone for LoadingState
impl Clone for LoadingState
Source§fn clone(&self) -> LoadingState
fn clone(&self) -> LoadingState
Returns a copy 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 LoadingState
impl Debug for LoadingState
Source§impl PartialEq for LoadingState
impl PartialEq for LoadingState
impl Eq for LoadingState
impl StructuralPartialEq for LoadingState
Auto Trait Implementations§
impl Freeze for LoadingState
impl RefUnwindSafe for LoadingState
impl Send for LoadingState
impl Sync for LoadingState
impl Unpin for LoadingState
impl UnwindSafe for LoadingState
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