Struct voodoo::Event [] [src]

pub struct Event { /* fields omitted */ }

An event.

Destruction

Dropping this Event will cause Device::destroy_event to be called, automatically releasing any resources associated with it.

Methods

impl Event
[src]

[src]

[src]

Returns this object's handle.

[src]

Returns a reference to this object's associated device.

[src]

Sets this event to signaled state.

https://www.khronos.org/registry/vulkan/specs/1.0/man/html/vkSetEvent.html

[src]

Resets this event to non-signaled state.

https://www.khronos.org/registry/vulkan/specs/1.0/man/html/vkResetEvent.html

[src]

Retrieves the status of this event object.

https://www.khronos.org/registry/vulkan/specs/1.0/man/html/vkGetEventStatus.html

Trait Implementations

impl Debug for Event
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'h> Handle for &'h Event
[src]

[src]

Auto Trait Implementations

impl Send for Event

impl Sync for Event