Enum tauri_runtime_wry::WindowMessage [−][src]
pub enum WindowMessage {
Show 40 variants
ScaleFactor(Sender<f64>),
InnerPosition(Sender<Result<PhysicalPosition<i32>>>),
OuterPosition(Sender<Result<PhysicalPosition<i32>>>),
InnerSize(Sender<PhysicalSize<u32>>),
OuterSize(Sender<PhysicalSize<u32>>),
IsFullscreen(Sender<bool>),
IsMaximized(Sender<bool>),
IsDecorated(Sender<bool>),
IsResizable(Sender<bool>),
IsVisible(Sender<bool>),
IsMenuVisible(Sender<bool>),
CurrentMonitor(Sender<Option<MonitorHandle>>),
PrimaryMonitor(Sender<Option<MonitorHandle>>),
AvailableMonitors(Sender<Vec<MonitorHandle>>),
GtkWindow(Sender<GtkWindow>),
Center(Sender<Result<()>>),
RequestUserAttention(Option<UserAttentionTypeWrapper>),
SetResizable(bool),
SetTitle(String),
Maximize,
Unmaximize,
Minimize,
Unminimize,
ShowMenu,
HideMenu,
Show,
Hide,
Close,
SetDecorations(bool),
SetAlwaysOnTop(bool),
SetSize(Size),
SetMinSize(Option<Size>),
SetMaxSize(Option<Size>),
SetPosition(Position),
SetFullscreen(bool),
SetFocus,
SetIcon(WindowIcon),
SetSkipTaskbar(bool),
DragWindow,
UpdateMenuItem(u16, MenuUpdate),
}Variants
Tuple Fields of InnerPosition
0: Sender<Result<PhysicalPosition<i32>>>Tuple Fields of OuterPosition
0: Sender<Result<PhysicalPosition<i32>>>Tuple Fields of InnerSize
0: Sender<PhysicalSize<u32>>Tuple Fields of OuterSize
0: Sender<PhysicalSize<u32>>Tuple Fields of RequestUserAttention
Tuple Fields of SetResizable
0: boolTuple Fields of SetTitle
0: StringTuple Fields of SetDecorations
0: boolTuple Fields of SetAlwaysOnTop
0: boolTuple Fields of SetSize
0: SizeTuple Fields of SetPosition
0: PositionTuple Fields of SetFullscreen
0: boolTuple Fields of SetSkipTaskbar
0: boolTuple Fields of UpdateMenuItem
0: u161: MenuUpdateTrait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for WindowMessage
impl Send for WindowMessage
impl !Sync for WindowMessage
impl Unpin for WindowMessage
impl !UnwindSafe for WindowMessage
Blanket Implementations
Mutably borrows from an owned value. Read more