#[repr(i32)]pub enum RenderingProperties {
POINT_SIZE = 0,
OPACITY = 1,
LINE_WIDTH = 2,
FONT_SIZE = 3,
REPRESENTATION = 4,
IMMEDIATE_RENDERING = 5,
SHADING = 6,
AMBIENT = 7,
LIGHTING = 8,
}Expand description
////////////////////////////////////////////////////////////////////////// Widget rendering properties
Variants§
POINT_SIZE = 0
OPACITY = 1
LINE_WIDTH = 2
FONT_SIZE = 3
REPRESENTATION = 4
IMMEDIATE_RENDERING = 5
SHADING = 6
AMBIENT = 7
LIGHTING = 8
Trait Implementations§
Source§impl Clone for RenderingProperties
impl Clone for RenderingProperties
Source§fn clone(&self) -> RenderingProperties
fn clone(&self) -> RenderingProperties
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 RenderingProperties
impl Debug for RenderingProperties
Source§impl From<RenderingProperties> for i32
impl From<RenderingProperties> for i32
Source§fn from(v: RenderingProperties) -> Self
fn from(v: RenderingProperties) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RenderingProperties
impl PartialEq for RenderingProperties
Source§impl TryFrom<i32> for RenderingProperties
impl TryFrom<i32> for RenderingProperties
impl Copy for RenderingProperties
impl Eq for RenderingProperties
impl StructuralPartialEq for RenderingProperties
Auto Trait Implementations§
impl Freeze for RenderingProperties
impl RefUnwindSafe for RenderingProperties
impl Send for RenderingProperties
impl Sync for RenderingProperties
impl Unpin for RenderingProperties
impl UnwindSafe for RenderingProperties
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