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§
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