Struct rustc_utils::source_map::filename::FilenameIndex
source · pub struct FilenameIndex { /* private fields */ }
Implementations§
source§impl FilenameIndex
impl FilenameIndex
sourcepub const MAX_AS_U32: u32 = 4_294_967_040u32
pub const MAX_AS_U32: u32 = 4_294_967_040u32
Maximum value the index can take, as a u32
.
sourcepub const fn from_usize(value: usize) -> Self
pub const fn from_usize(value: usize) -> Self
sourcepub const unsafe fn from_u32_unchecked(value: u32) -> Self
pub const unsafe fn from_u32_unchecked(value: u32) -> Self
Creates a new index from a given u32
.
§Safety
The provided value must be less than or equal to the maximum value for the newtype. Providing a value outside this range is undefined due to layout restrictions.
Prefer using from_u32
.
source§impl FilenameIndex
impl FilenameIndex
pub fn find_source_file(self, source_map: &SourceMap) -> Result<Lrc<SourceFile>>
Trait Implementations§
source§impl Add<usize> for FilenameIndex
impl Add<usize> for FilenameIndex
source§impl Clone for FilenameIndex
impl Clone for FilenameIndex
source§fn clone(&self) -> FilenameIndex
fn clone(&self) -> FilenameIndex
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FilenameIndex
impl Debug for FilenameIndex
source§impl From<FilenameIndex> for u32
impl From<FilenameIndex> for u32
source§fn from(v: FilenameIndex) -> u32
fn from(v: FilenameIndex) -> u32
Converts to this type from the input type.
source§impl From<FilenameIndex> for usize
impl From<FilenameIndex> for usize
source§fn from(v: FilenameIndex) -> usize
fn from(v: FilenameIndex) -> usize
Converts to this type from the input type.
source§impl From<u32> for FilenameIndex
impl From<u32> for FilenameIndex
source§impl From<usize> for FilenameIndex
impl From<usize> for FilenameIndex
source§impl Hash for FilenameIndex
impl Hash for FilenameIndex
source§impl Idx for FilenameIndex
impl Idx for FilenameIndex
source§impl PartialEq for FilenameIndex
impl PartialEq for FilenameIndex
source§fn eq(&self, other: &FilenameIndex) -> bool
fn eq(&self, other: &FilenameIndex) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for FilenameIndex
impl Serialize for FilenameIndex
source§impl TS for FilenameIndex
impl TS for FilenameIndex
const EXPORT_TO: Option<&'static str> = _
source§fn decl() -> String
fn decl() -> String
Declaration of this type, e.g.
interface User { user_id: number, ... }
.
This function will panic if the type has no declaration.source§fn inline() -> String
fn inline() -> String
Formats this types definition in TypeScript, e.g
{ user_id: number }
.
This function will panic if the type cannot be inlined.source§fn inline_flattened() -> String
fn inline_flattened() -> String
Flatten an type declaration.
This function will panic if the type cannot be flattened.
This function will panic if the type cannot be flattened.
source§fn dependencies() -> Vec<Dependency>where
Self: 'static,
fn dependencies() -> Vec<Dependency>where
Self: 'static,
Information about types this type depends on.
This is used for resolving imports when exporting to a file.
source§fn transparent() -> bool
fn transparent() -> bool
true
if this is a transparent type, e.g tuples or a list.This is used for resolving imports when using the
export!
macro.source§fn name_with_type_args(args: Vec<String>) -> String
fn name_with_type_args(args: Vec<String>) -> String
Name of this type in TypeScript, with type arguments.
source§fn export() -> Result<(), ExportError>where
Self: 'static,
fn export() -> Result<(), ExportError>where
Self: 'static,
Manually export this type to a file.
The output file can be specified by annotating the type with
#[ts(export_to = ".."]
.
By default, the filename will be derived from the types name. Read moresource§fn export_to(path: impl AsRef<Path>) -> Result<(), ExportError>where
Self: 'static,
fn export_to(path: impl AsRef<Path>) -> Result<(), ExportError>where
Self: 'static,
Manually export this type to a file with a file with the specified path. This
function will ignore the
#[ts(export_to = "..)]
attribute.source§fn export_to_string() -> Result<String, ExportError>where
Self: 'static,
fn export_to_string() -> Result<String, ExportError>where
Self: 'static,
Manually generate bindings for this type, returning a
This function does not format the output, even if the
String
.This function does not format the output, even if the
format
feature is enabled.impl Copy for FilenameIndex
impl Eq for FilenameIndex
impl StructuralPartialEq for FilenameIndex
Auto Trait Implementations§
impl Freeze for FilenameIndex
impl RefUnwindSafe for FilenameIndex
impl Send for FilenameIndex
impl Sync for FilenameIndex
impl Unpin for FilenameIndex
impl UnwindSafe for FilenameIndex
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more