pub struct LocationTreeNode {
pub location: AssetLocation,
pub location_root: AssetLocation,
pub children: BTreeMap<LocationTreeNodeKey, LocationTreeNode>,
pub has_changes: bool,
}
Fields§
§location: AssetLocation
§location_root: AssetLocation
§children: BTreeMap<LocationTreeNodeKey, LocationTreeNode>
§has_changes: bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LocationTreeNode
impl RefUnwindSafe for LocationTreeNode
impl Send for LocationTreeNode
impl Sync for LocationTreeNode
impl Unpin for LocationTreeNode
impl UnwindSafe for LocationTreeNode
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