pub struct SymbolAssetDependencies {
pub glyphs: BTreeSet<GlyphKey>,
pub images: BTreeSet<String>,
}Expand description
Asset dependencies for a single placed symbol.
Fields§
§glyphs: BTreeSet<GlyphKey>Glyphs needed for text rendering.
images: BTreeSet<String>Referenced image ids needed for icon rendering.
Trait Implementations§
Source§impl Clone for SymbolAssetDependencies
impl Clone for SymbolAssetDependencies
Source§fn clone(&self) -> SymbolAssetDependencies
fn clone(&self) -> SymbolAssetDependencies
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 SymbolAssetDependencies
impl Debug for SymbolAssetDependencies
Source§impl Default for SymbolAssetDependencies
impl Default for SymbolAssetDependencies
Source§fn default() -> SymbolAssetDependencies
fn default() -> SymbolAssetDependencies
Returns the “default value” for a type. Read more
Source§impl PartialEq for SymbolAssetDependencies
impl PartialEq for SymbolAssetDependencies
impl Eq for SymbolAssetDependencies
impl StructuralPartialEq for SymbolAssetDependencies
Auto Trait Implementations§
impl Freeze for SymbolAssetDependencies
impl RefUnwindSafe for SymbolAssetDependencies
impl Send for SymbolAssetDependencies
impl Sync for SymbolAssetDependencies
impl Unpin for SymbolAssetDependencies
impl UnsafeUnpin for SymbolAssetDependencies
impl UnwindSafe for SymbolAssetDependencies
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