Struct shaderc::ResolvedInclude [] [src]

pub struct ResolvedInclude {
    pub resolved_name: String,
    pub content: String,
}

A representation of a successfully resolved include directive, containing the name of the include and its contents.

Fields

A name uniquely identifying the resolved include. Typically the absolute path of the file.

This name is used in error messages and to disambiguate different includes.

This field must not be empty. Compilation will panic if an empty string is provided.

The content of the include to substitute the include directive with.

Trait Implementations

impl PartialEq for ResolvedInclude
[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 ResolvedInclude
[src]

impl PartialOrd for ResolvedInclude
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for ResolvedInclude
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for ResolvedInclude
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for ResolvedInclude
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ResolvedInclude
[src]

[src]

Formats the value using the given formatter.