Struct windows_win::Msg [] [src]

pub struct Msg { /* fields omitted */ }

Wrapper over Windows messages.

On drop it translates and dispatches message. You can do it yourself though.

Methods

impl Msg
[src]

Message identifier.

Pointer to inner message.

Mutable pointer to inner message.

Retrieves raw Windows Message.

Ownership is not passed so do not manually dispatch it.

Retrieves raw Windows Message and transfers ownership.

After that user is responsible to dispatch message.

Drops and Dispatches underlying Windows Message. You cannot use it after that.

Trait Implementations

impl Drop for Msg
[src]

A method called when the value goes out of scope. Read more