pub enum PictureField {
Show 21 variants
PositionX = 0,
PositionY = 1,
Width = 2,
Height = 3,
PatternNumber = 4,
Opacity = 5,
Angle = 6,
CursorHover = 8,
PictureInUse = 9,
StringDoneDisplaying = 10,
ZoomWidth = 11,
ZoomHeight = 12,
TopLeftX = 13,
TopLeftY = 14,
TopRightX = 15,
TopRightY = 16,
BottomLeftX = 17,
BottomLeftY = 18,
BottomRightX = 19,
BottomRightY = 20,
Unknown = 21,
}Variants§
PositionX = 0
PositionY = 1
Width = 2
Height = 3
PatternNumber = 4
Opacity = 5
Angle = 6
CursorHover = 8
PictureInUse = 9
StringDoneDisplaying = 10
ZoomWidth = 11
ZoomHeight = 12
TopLeftX = 13
TopLeftY = 14
TopRightX = 15
TopRightY = 16
BottomLeftX = 17
BottomLeftY = 18
BottomRightX = 19
BottomRightY = 20
Unknown = 21
Implementations§
Trait Implementations§
Source§impl Clone for PictureField
impl Clone for PictureField
Source§fn clone(&self) -> PictureField
fn clone(&self) -> PictureField
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 PictureField
impl PartialEq for PictureField
impl StructuralPartialEq for PictureField
Auto Trait Implementations§
impl Freeze for PictureField
impl RefUnwindSafe for PictureField
impl Send for PictureField
impl Sync for PictureField
impl Unpin for PictureField
impl UnwindSafe for PictureField
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