pub enum DefinedGlyphSelectRef {
ExternallyDefinedCharacterGlyph(ExternallyDefinedCharacterGlyphId),
PreDefinedCharacterGlyph(PreDefinedCharacterGlyphId),
Complex(ComplexUnitId),
}Variants§
ExternallyDefinedCharacterGlyph(ExternallyDefinedCharacterGlyphId)
PreDefinedCharacterGlyph(PreDefinedCharacterGlyphId)
Complex(ComplexUnitId)
Implementations§
Source§impl DefinedGlyphSelectRef
impl DefinedGlyphSelectRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> DefinedGlyphSelectRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for DefinedGlyphSelectRef
impl Clone for DefinedGlyphSelectRef
Source§fn clone(&self) -> DefinedGlyphSelectRef
fn clone(&self) -> DefinedGlyphSelectRef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DefinedGlyphSelectRef
impl Debug for DefinedGlyphSelectRef
Source§impl PartialEq for DefinedGlyphSelectRef
impl PartialEq for DefinedGlyphSelectRef
Source§fn eq(&self, other: &DefinedGlyphSelectRef) -> bool
fn eq(&self, other: &DefinedGlyphSelectRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DefinedGlyphSelectRef
Auto Trait Implementations§
impl Freeze for DefinedGlyphSelectRef
impl RefUnwindSafe for DefinedGlyphSelectRef
impl Send for DefinedGlyphSelectRef
impl Sync for DefinedGlyphSelectRef
impl Unpin for DefinedGlyphSelectRef
impl UnsafeUnpin for DefinedGlyphSelectRef
impl UnwindSafe for DefinedGlyphSelectRef
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