#[repr(u32)]pub enum TextureProgressFillMode {
LeftToRight = 0,
RightToLeft = 1,
TopToBottom = 2,
BottomToTop = 3,
Clockwise = 4,
CounterClockwise = 5,
BilinearLeftAndRight = 6,
BilinearTopAndBottom = 7,
ClockwiseAndCounterClockwise = 8,
}
Variants§
LeftToRight = 0
RightToLeft = 1
TopToBottom = 2
BottomToTop = 3
Clockwise = 4
CounterClockwise = 5
BilinearLeftAndRight = 6
BilinearTopAndBottom = 7
ClockwiseAndCounterClockwise = 8
Trait Implementations§
Source§impl Clone for TextureProgressFillMode
impl Clone for TextureProgressFillMode
Source§fn clone(&self) -> TextureProgressFillMode
fn clone(&self) -> TextureProgressFillMode
Returns a copy 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 TextureProgressFillMode
impl Debug for TextureProgressFillMode
Source§impl Hash for TextureProgressFillMode
impl Hash for TextureProgressFillMode
Source§impl PartialEq for TextureProgressFillMode
impl PartialEq for TextureProgressFillMode
impl Copy for TextureProgressFillMode
impl Eq for TextureProgressFillMode
impl StructuralPartialEq for TextureProgressFillMode
Auto Trait Implementations§
impl Freeze for TextureProgressFillMode
impl RefUnwindSafe for TextureProgressFillMode
impl Send for TextureProgressFillMode
impl Sync for TextureProgressFillMode
impl Unpin for TextureProgressFillMode
impl UnwindSafe for TextureProgressFillMode
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