Enum rustdoc::html::render::write_shared::SharedResource
source · [−]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
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
fn vzip(self) -> V
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
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 bytesToolchainSpecific
: 16 bytesInvocationSpecific
: 16 bytes