pub struct ResourceContext<'a> { /* private fields */ }Expand description
A context used when loading images.
Implementations§
Source§impl<'a> ResourceContext<'a>
impl<'a> ResourceContext<'a>
Sourcepub fn request_resource(
&mut self,
request: ResourceRequest,
options: ResourceLoadOptions,
) -> bool
pub fn request_resource( &mut self, request: ResourceRequest, options: ResourceLoadOptions, ) -> bool
Dispatches a resource request through the configured loader chain.
Returns true when a loader accepts the request.
Sourcepub fn load_image(
&mut self,
path: String,
image: RCHandle<SkImage>,
policy: ImageRetentionPolicy,
)
pub fn load_image( &mut self, path: String, image: RCHandle<SkImage>, policy: ImageRetentionPolicy, )
Loads the provided image into the resource manager.
Sourcepub fn load_svg(
&mut self,
path: String,
data: &[u8],
policy: ImageRetentionPolicy,
) -> Option<ImageId>
pub fn load_svg( &mut self, path: String, data: &[u8], policy: ImageRetentionPolicy, ) -> Option<ImageId>
Loads an SVG from bytes and associates it with the provided path.
Sourcepub fn load_font(&mut self, path: String, data: &[u8]) -> bool
pub fn load_font(&mut self, path: String, data: &[u8]) -> bool
Loads a font from bytes, making it available to text layout.
Sourcepub fn load_translation(
&mut self,
lang: LanguageIdentifier,
path: String,
ftl: &str,
) -> bool
pub fn load_translation( &mut self, lang: LanguageIdentifier, path: String, ftl: &str, ) -> bool
Loads a translation file and marks text as dirty so localized content can refresh.
Auto Trait Implementations§
impl<'a> Freeze for ResourceContext<'a>
impl<'a> !RefUnwindSafe for ResourceContext<'a>
impl<'a> !Send for ResourceContext<'a>
impl<'a> !Sync for ResourceContext<'a>
impl<'a> Unpin for ResourceContext<'a>
impl<'a> UnsafeUnpin for ResourceContext<'a>
impl<'a> !UnwindSafe for ResourceContext<'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
§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.