pub enum FontSelectRefView<'m> {
DraughtingPreDefinedTextFont(&'m DraughtingPreDefinedTextFont),
ExternallyDefinedTextFont(&'m ExternallyDefinedTextFont),
PreDefinedTextFont(&'m PreDefinedTextFont),
TextFont(&'m TextFont),
Complex(&'m ComplexUnit),
}Variants§
DraughtingPreDefinedTextFont(&'m DraughtingPreDefinedTextFont)
ExternallyDefinedTextFont(&'m ExternallyDefinedTextFont)
PreDefinedTextFont(&'m PreDefinedTextFont)
TextFont(&'m TextFont)
Complex(&'m ComplexUnit)
Trait Implementations§
Source§impl<'m> Clone for FontSelectRefView<'m>
impl<'m> Clone for FontSelectRefView<'m>
Source§fn clone(&self) -> FontSelectRefView<'m>
fn clone(&self) -> FontSelectRefView<'m>
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 moreimpl<'m> Copy for FontSelectRefView<'m>
Auto Trait Implementations§
impl<'m> Freeze for FontSelectRefView<'m>
impl<'m> RefUnwindSafe for FontSelectRefView<'m>
impl<'m> Send for FontSelectRefView<'m>
impl<'m> Sync for FontSelectRefView<'m>
impl<'m> Unpin for FontSelectRefView<'m>
impl<'m> UnsafeUnpin for FontSelectRefView<'m>
impl<'m> UnwindSafe for FontSelectRefView<'m>
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