Struct bevy::asset::io::gated::GatedReader
pub struct GatedReader<R>where
R: AssetReader,{ /* private fields */ }
Expand description
A “gated” reader that will prevent asset reads from returning until
a given path has been “opened” using GateOpener
.
This is built primarily for unit tests.
Implementations§
§impl<R> GatedReader<R>where
R: AssetReader,
impl<R> GatedReader<R>where R: AssetReader,
pub fn new(reader: R) -> (GatedReader<R>, GateOpener)
pub fn new(reader: R) -> (GatedReader<R>, GateOpener)
Creates a new GatedReader
, which wraps the given reader
. Also returns a GateOpener
which
can be used to open “path gates” for this GatedReader
.
Trait Implementations§
§impl<R> AssetReader for GatedReader<R>where
R: AssetReader,
impl<R> AssetReader for GatedReader<R>where R: AssetReader,
§fn read<'a>(
&'a self,
path: &'a Path
) -> Pin<Box<dyn Future<Output = Result<Box<dyn AsyncRead + Sync + Unpin + Send + 'a, Global>, AssetReaderError>> + Send + 'a, Global>>
fn read<'a>( &'a self, path: &'a Path ) -> Pin<Box<dyn Future<Output = Result<Box<dyn AsyncRead + Sync + Unpin + Send + 'a, Global>, AssetReaderError>> + Send + 'a, Global>>
Returns a future to load the full file data at the provided path.
§fn read_meta<'a>(
&'a self,
path: &'a Path
) -> Pin<Box<dyn Future<Output = Result<Box<dyn AsyncRead + Sync + Unpin + Send + 'a, Global>, AssetReaderError>> + Send + 'a, Global>>
fn read_meta<'a>( &'a self, path: &'a Path ) -> Pin<Box<dyn Future<Output = Result<Box<dyn AsyncRead + Sync + Unpin + Send + 'a, Global>, AssetReaderError>> + Send + 'a, Global>>
Returns a future to load the full file data at the provided path.
§fn read_directory<'a>(
&'a self,
path: &'a Path
) -> Pin<Box<dyn Future<Output = Result<Box<dyn Stream<Item = PathBuf> + Unpin + Send, Global>, AssetReaderError>> + Send + 'a, Global>>
fn read_directory<'a>( &'a self, path: &'a Path ) -> Pin<Box<dyn Future<Output = Result<Box<dyn Stream<Item = PathBuf> + Unpin + Send, Global>, AssetReaderError>> + Send + 'a, Global>>
Returns an iterator of directory entry names at the provided path.
§fn is_directory<'a>(
&'a self,
path: &'a Path
) -> Pin<Box<dyn Future<Output = Result<bool, AssetReaderError>> + Send + 'a, Global>>
fn is_directory<'a>( &'a self, path: &'a Path ) -> Pin<Box<dyn Future<Output = Result<bool, AssetReaderError>> + Send + 'a, Global>>
Returns an iterator of directory entry names at the provided path.
§fn read_meta_bytes<'a>(
&'a self,
path: &'a Path
) -> Pin<Box<dyn Future<Output = Result<Vec<u8, Global>, AssetReaderError>> + Send + 'a, Global>>
fn read_meta_bytes<'a>( &'a self, path: &'a Path ) -> Pin<Box<dyn Future<Output = Result<Vec<u8, Global>, AssetReaderError>> + Send + 'a, Global>>
Reads asset metadata bytes at the given
path
into a Vec<u8>
. This is a convenience
function that wraps AssetReader::read_meta
by default.§impl<R> Clone for GatedReader<R>where
R: AssetReader + Clone,
impl<R> Clone for GatedReader<R>where R: AssetReader + Clone,
§fn clone(&self) -> GatedReader<R>
fn clone(&self) -> GatedReader<R>
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 moreAuto Trait Implementations§
impl<R> !RefUnwindSafe for GatedReader<R>
impl<R> Send for GatedReader<R>
impl<R> Sync for GatedReader<R>
impl<R> Unpin for GatedReader<R>where R: Unpin,
impl<R> !UnwindSafe for GatedReader<R>
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
Return the
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
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, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
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.