enum SharedResource<'a> {
    Unversioned {
        name: &'static str,
    },
    ToolchainSpecific {
        basename: &'static str,
    },
    InvocationSpecific {
        basename: &'a str,
    },
}

Variants

Unversioned

Fields

name: &'static str

This file will never change, no matter what toolchain is used to build it.

It does not have a resource suffix.

ToolchainSpecific

Fields

basename: &'static str

This file may change depending on the toolchain.

It has a resource suffix.

InvocationSpecific

Fields

basename: &'a str

This file may change for any crate within a build, or based on the CLI arguments.

This differs from normal invocation-specific files because it has a resource suffix.

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 24 bytes

Size for each variant:

  • Unversioned: 16 bytes
  • ToolchainSpecific: 16 bytes
  • InvocationSpecific: 16 bytes