pub struct DialogPopupTrackingState {
pub item_no: i16,
pub ctrl_handle: u32,
pub ctrl_ptr: u32,
pub active_menu: usize,
pub highlighted_item: i16,
pub saved_pixels: Vec<u8>,
pub dropdown_rect: (i16, i16, i16, i16),
}Expand description
Popup-menu control state owned by an active ModalDialog loop.
Fields§
§item_no: i16§ctrl_handle: u32§ctrl_ptr: u32§highlighted_item: i16§saved_pixels: Vec<u8>§dropdown_rect: (i16, i16, i16, i16)Auto Trait Implementations§
impl Freeze for DialogPopupTrackingState
impl RefUnwindSafe for DialogPopupTrackingState
impl Send for DialogPopupTrackingState
impl Sync for DialogPopupTrackingState
impl Unpin for DialogPopupTrackingState
impl UnsafeUnpin for DialogPopupTrackingState
impl UnwindSafe for DialogPopupTrackingState
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