Trait winit::platform::wayland::WindowBuilderExtWayland   
source · pub trait WindowBuilderExtWayland {
    // Required method
    fn with_name(
        self,
        general: impl Into<String>,
        instance: impl Into<String>
    ) -> Self;
}Expand description
Additional methods on WindowBuilder that are specific to Wayland.
Required Methods§
sourcefn with_name(
    self,
    general: impl Into<String>,
    instance: impl Into<String>
) -> Self
 
fn with_name( self, general: impl Into<String>, instance: impl Into<String> ) -> Self
Build window with the given name.
The general name sets an application ID, which should match the .desktop
file destributed with your program. The instance is a no-op.
For details about application ID conventions, see the Desktop Entry Spec
Object Safety§
This trait is not object safe.