#[repr(u32)]pub enum VisualServerShadowCastingSetting {
Off = 0,
On = 1,
DoubleSided = 2,
ShadowsOnly = 3,
}
Variants§
Trait Implementations§
Source§impl Clone for VisualServerShadowCastingSetting
impl Clone for VisualServerShadowCastingSetting
Source§fn clone(&self) -> VisualServerShadowCastingSetting
fn clone(&self) -> VisualServerShadowCastingSetting
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 PartialEq for VisualServerShadowCastingSetting
impl PartialEq for VisualServerShadowCastingSetting
Source§fn eq(&self, other: &VisualServerShadowCastingSetting) -> bool
fn eq(&self, other: &VisualServerShadowCastingSetting) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for VisualServerShadowCastingSetting
impl Eq for VisualServerShadowCastingSetting
impl StructuralPartialEq for VisualServerShadowCastingSetting
Auto Trait Implementations§
impl Freeze for VisualServerShadowCastingSetting
impl RefUnwindSafe for VisualServerShadowCastingSetting
impl Send for VisualServerShadowCastingSetting
impl Sync for VisualServerShadowCastingSetting
impl Unpin for VisualServerShadowCastingSetting
impl UnwindSafe for VisualServerShadowCastingSetting
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