pub struct AudioClipHandle(/* private fields */);
Expand description
Handle for AudioClipAsset
.
Created with ResourceDatabase::find_audio_clip
, and can be resolved into a borrow of the asset itself with ResourceDatabase::get_audio_clip
.
Trait Implementations§
Source§impl Clone for AudioClipHandle
impl Clone for AudioClipHandle
Source§fn clone(&self) -> AudioClipHandle
fn clone(&self) -> AudioClipHandle
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 AudioClipHandle
impl Debug for AudioClipHandle
impl Copy for AudioClipHandle
Auto Trait Implementations§
impl Freeze for AudioClipHandle
impl RefUnwindSafe for AudioClipHandle
impl Send for AudioClipHandle
impl Sync for AudioClipHandle
impl Unpin for AudioClipHandle
impl UnwindSafe for AudioClipHandle
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