pub struct AppManifest {
window : WindowManifest
entry : AppEntry
windows : Array[AppWindowManifest]
debug : Int
}fn AppManifest::AppManifest(window : WindowManifest, entry : AppEntry, debug? : Int, windows? : Array[AppWindowManifest]) -> AppManifestpub struct AppWindowManifest {
id : String
window : WindowManifest
entry : AppEntry
open_on_start : Bool
} derive(Eq, Debug)impl Show for AppWindowManifestfn AppWindowManifest::AppWindowManifest(id : String, window : WindowManifest, entry : AppEntry, open_on_start? : Bool) -> AppWindowManifestimpl Show for TitlebarStylepub struct WindowManifest {
title : String
width : Int
height : Int
size_hint : WindowSizeHint
titlebar_style : TitlebarStyle
} derive(Eq, Debug)impl Show for WindowManifestfn WindowManifest::WindowManifest(title : String, width : Int, height : Int, size_hint? : WindowSizeHint, titlebar_style? : TitlebarStyle) -> WindowManifestimpl Show for WindowSizeHintMoonBit bindings for the Proton native desktop runtime.
Dependencies