Struct bevy_kira_components::sources::audio_file::loader::AudioAssetSettings
source · pub struct AudioAssetSettings {
pub should_stream: bool,
}
Expand description
Settings applied when loading the audio file.
Fields§
§should_stream: bool
Whether the loader should read the entire file into memory, or only load it on demand during playback. Note that some features are not available when a file is streamed from disk, and streaming is only available on desktop platforms.
Trait Implementations§
source§impl Clone for AudioAssetSettings
impl Clone for AudioAssetSettings
source§fn clone(&self) -> AudioAssetSettings
fn clone(&self) -> AudioAssetSettings
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 AudioAssetSettings
impl Debug for AudioAssetSettings
source§impl Default for AudioAssetSettings
impl Default for AudioAssetSettings
source§fn default() -> AudioAssetSettings
fn default() -> AudioAssetSettings
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AudioAssetSettings
impl<'de> Deserialize<'de> for AudioAssetSettings
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for AudioAssetSettings
impl Serialize for AudioAssetSettings
impl Copy for AudioAssetSettings
Auto Trait Implementations§
impl Freeze for AudioAssetSettings
impl RefUnwindSafe for AudioAssetSettings
impl Send for AudioAssetSettings
impl Sync for AudioAssetSettings
impl Unpin for AudioAssetSettings
impl UnwindSafe for AudioAssetSettings
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self
using data from the given [World
].