Enum bevy_asset::io::AssetSourceId
source · pub enum AssetSourceId<'a> {
Default,
Name(CowArc<'a, str>),
}
Expand description
A reference to an “asset source”, which maps to an AssetReader
and/or AssetWriter
.
AssetSourceId::Default
corresponds to “default asset paths” that don’t specify a source:/path/to/asset.png
AssetSourceId::Name
corresponds to asset paths that do specify a source:remote://path/to/asset.png
, whereremote
is the name.
Variants§
Implementations§
source§impl<'a> AssetSourceId<'a>
impl<'a> AssetSourceId<'a>
sourcepub fn new(source: Option<impl Into<CowArc<'a, str>>>) -> AssetSourceId<'a>
pub fn new(source: Option<impl Into<CowArc<'a, str>>>) -> AssetSourceId<'a>
Creates a new AssetSourceId
sourcepub fn as_str(&self) -> Option<&str>
pub fn as_str(&self) -> Option<&str>
Returns None
if this is AssetSourceId::Default
and Some
containing the
name if this is AssetSourceId::Name
.
sourcepub fn into_owned(self) -> AssetSourceId<'static>
pub fn into_owned(self) -> AssetSourceId<'static>
If this is not already an owned / static id, create one. Otherwise, it will return itself (with a static lifetime).
sourcepub fn clone_owned(&self) -> AssetSourceId<'static>
pub fn clone_owned(&self) -> AssetSourceId<'static>
Clones into an owned [AssetSourceId<'static>
].
This is equivalent to .clone().into_owned()
.
Trait Implementations§
source§impl<'a> Clone for AssetSourceId<'a>
impl<'a> Clone for AssetSourceId<'a>
source§fn clone(&self) -> AssetSourceId<'a>
fn clone(&self) -> AssetSourceId<'a>
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<'a> Debug for AssetSourceId<'a>
impl<'a> Debug for AssetSourceId<'a>
source§impl<'a> Default for AssetSourceId<'a>
impl<'a> Default for AssetSourceId<'a>
source§fn default() -> AssetSourceId<'a>
fn default() -> AssetSourceId<'a>
Returns the “default value” for a type. Read more
source§impl<'a> Display for AssetSourceId<'a>
impl<'a> Display for AssetSourceId<'a>
source§impl<'a, 'b> From<&'a AssetSourceId<'b>> for AssetSourceId<'b>
impl<'a, 'b> From<&'a AssetSourceId<'b>> for AssetSourceId<'b>
source§fn from(value: &'a AssetSourceId<'b>) -> Self
fn from(value: &'a AssetSourceId<'b>) -> Self
Converts to this type from the input type.
source§impl From<&'static str> for AssetSourceId<'static>
impl From<&'static str> for AssetSourceId<'static>
source§impl From<String> for AssetSourceId<'static>
impl From<String> for AssetSourceId<'static>
source§impl<'a> Hash for AssetSourceId<'a>
impl<'a> Hash for AssetSourceId<'a>
source§impl<'a> PartialEq for AssetSourceId<'a>
impl<'a> PartialEq for AssetSourceId<'a>
impl<'a> Eq for AssetSourceId<'a>
Auto Trait Implementations§
impl<'a> Freeze for AssetSourceId<'a>
impl<'a> RefUnwindSafe for AssetSourceId<'a>
impl<'a> Send for AssetSourceId<'a>
impl<'a> Sync for AssetSourceId<'a>
impl<'a> Unpin for AssetSourceId<'a>
impl<'a> UnwindSafe for AssetSourceId<'a>
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§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
.source§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
.source§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.source§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.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self
using data from the given World
.