pub struct AssetReloadSupport {
pub file_watch: bool,
}Expand description
Host-level support flags for development asset reload automation.
file_watch means the current host/startup stack will automatically detect native file-backed
asset changes and publish new AssetReloadEpoch values without requiring an app-local manual
bump.
Fields§
§file_watch: boolTrait Implementations§
Source§impl Clone for AssetReloadSupport
impl Clone for AssetReloadSupport
Source§fn clone(&self) -> AssetReloadSupport
fn clone(&self) -> AssetReloadSupport
Returns a duplicate 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 AssetReloadSupport
impl Debug for AssetReloadSupport
Source§impl Default for AssetReloadSupport
impl Default for AssetReloadSupport
Source§fn default() -> AssetReloadSupport
fn default() -> AssetReloadSupport
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssetReloadSupport
impl PartialEq for AssetReloadSupport
impl Copy for AssetReloadSupport
impl Eq for AssetReloadSupport
impl StructuralPartialEq for AssetReloadSupport
Auto Trait Implementations§
impl Freeze for AssetReloadSupport
impl RefUnwindSafe for AssetReloadSupport
impl Send for AssetReloadSupport
impl Sync for AssetReloadSupport
impl Unpin for AssetReloadSupport
impl UnsafeUnpin for AssetReloadSupport
impl UnwindSafe for AssetReloadSupport
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