pub struct RenderQuality {
pub msaa: u32,
pub shadow: ShadowQuality,
pub text: TextQuality,
}Expand description
Fields§
§msaa: u32MSAA sample count. Must be a power of two; 1 disables MSAA.
shadow: ShadowQualityShadow rendering quality.
text: TextQualityText rendering quality.
Implementations§
Trait Implementations§
Source§impl Clone for RenderQuality
impl Clone for RenderQuality
Source§fn clone(&self) -> RenderQuality
fn clone(&self) -> RenderQuality
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 moreAuto Trait Implementations§
impl Freeze for RenderQuality
impl RefUnwindSafe for RenderQuality
impl Send for RenderQuality
impl Sync for RenderQuality
impl Unpin for RenderQuality
impl UnsafeUnpin for RenderQuality
impl UnwindSafe for RenderQuality
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