pub struct RequestedImportable {
pub asset_id: AssetId,
pub schema: SchemaRecord,
pub asset_name: AssetName,
pub asset_location: AssetLocation,
pub source_file: CanonicalPathReference,
pub canonical_path_references: HashMap<CanonicalPathReference, AssetId>,
pub path_references: HashMap<PathReferenceHash, CanonicalPathReference>,
pub replace_with_default_asset: bool,
}
Fields§
§asset_id: AssetId
§schema: SchemaRecord
§asset_name: AssetName
§asset_location: AssetLocation
§source_file: CanonicalPathReference
§canonical_path_references: HashMap<CanonicalPathReference, AssetId>
§path_references: HashMap<PathReferenceHash, CanonicalPathReference>
§replace_with_default_asset: bool
Trait Implementations§
Source§impl Clone for RequestedImportable
impl Clone for RequestedImportable
Source§fn clone(&self) -> RequestedImportable
fn clone(&self) -> RequestedImportable
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 moreAuto Trait Implementations§
impl Freeze for RequestedImportable
impl RefUnwindSafe for RequestedImportable
impl Send for RequestedImportable
impl Sync for RequestedImportable
impl Unpin for RequestedImportable
impl UnwindSafe for RequestedImportable
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