pub enum FontSelectRef {
DraughtingPreDefinedTextFont(DraughtingPreDefinedTextFontId),
ExternallyDefinedTextFont(ExternallyDefinedTextFontId),
PreDefinedTextFont(PreDefinedTextFontId),
TextFont(TextFontId),
Complex(ComplexUnitId),
}Variants§
DraughtingPreDefinedTextFont(DraughtingPreDefinedTextFontId)
ExternallyDefinedTextFont(ExternallyDefinedTextFontId)
PreDefinedTextFont(PreDefinedTextFontId)
TextFont(TextFontId)
Complex(ComplexUnitId)
Implementations§
Source§impl FontSelectRef
impl FontSelectRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> FontSelectRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for FontSelectRef
impl Clone for FontSelectRef
Source§fn clone(&self) -> FontSelectRef
fn clone(&self) -> FontSelectRef
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 FontSelectRef
impl Debug for FontSelectRef
Source§impl PartialEq for FontSelectRef
impl PartialEq for FontSelectRef
Source§fn eq(&self, other: &FontSelectRef) -> bool
fn eq(&self, other: &FontSelectRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FontSelectRef
Auto Trait Implementations§
impl Freeze for FontSelectRef
impl RefUnwindSafe for FontSelectRef
impl Send for FontSelectRef
impl Sync for FontSelectRef
impl Unpin for FontSelectRef
impl UnsafeUnpin for FontSelectRef
impl UnwindSafe for FontSelectRef
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