Enum vulkano::sync::AccessCheckError [] [src]

pub enum AccessCheckError {
    Denied(AccessError),
    Unknown,
}

Error that can happen when checking whether we have access to a resource.

Variants

Access to the resource has been denied.

The resource is unknown, therefore we cannot possibly answer whether we have access or not.

Trait Implementations

impl Clone for AccessCheckError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AccessCheckError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for AccessCheckError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for AccessCheckError
[src]

impl Error for AccessCheckError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl Display for AccessCheckError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<AccessError> for AccessCheckError
[src]

[src]

Performs the conversion.

Auto Trait Implementations