Enum entmet_lib::entities::entity::BillboardConstraints
source · #[repr(u8)]pub enum BillboardConstraints {
Fixed = 0,
Vertical = 1,
Horizontal = 2,
Center = 3,
}Expand description
An enum of the billboard constraints
Variants§
Fixed = 0
Being fixed
Vertical = 1
Vertically aligned
Horizontal = 2
Horizontally aligned
Center = 3
Centered aligned
Trait Implementations§
source§impl PartialEq for BillboardConstraints
impl PartialEq for BillboardConstraints
source§fn eq(&self, other: &BillboardConstraints) -> bool
fn eq(&self, other: &BillboardConstraints) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BillboardConstraints
Auto Trait Implementations§
impl Freeze for BillboardConstraints
impl RefUnwindSafe for BillboardConstraints
impl Send for BillboardConstraints
impl Sync for BillboardConstraints
impl Unpin for BillboardConstraints
impl UnwindSafe for BillboardConstraints
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