Struct SourceMap
pub struct SourceMap { /* private fields */ }
__common
only.Expand description
The interner for spans.
As most spans are simply stored, we store them as interned form.
- Each ast node only stores pointer to actual data (BytePos).
- The pointers (BytePos) can be converted to file name, line and column using this struct.
§Note
This struct should be shared. swc_common
uses crate::sync::Lrc, which is
std::rc::Rc or std::sync::Arc, depending on the compile option, for this
purpose.
§Note for bundler authors
If you are bundling modules, you should share this struct while parsing modules. Otherwise, you have to implement a code generator which accepts multiple SourceMap.
Implementations§
§impl SourceMap
impl SourceMap
pub fn new(path_mapping: FilePathMapping) -> SourceMap
__ecma
and __utils
only.pub fn with_file_loader( file_loader: Box<dyn FileLoader + Sync + Send>, path_mapping: FilePathMapping, ) -> SourceMap
__ecma
and __utils
only.pub fn path_mapping(&self) -> &FilePathMapping
__ecma
and __utils
only.pub fn file_exists(&self, path: &Path) -> bool
__ecma
and __utils
only.pub fn load_file(&self, path: &Path) -> Result<Arc<SourceFile>, Error>
__ecma
and __utils
only.pub fn files(&self) -> MappedMutexGuard<'_, RawMutex, Vec<Arc<SourceFile>>>
__ecma
and __utils
only.pub fn source_file_by_stable_id( &self, stable_id: StableSourceFileId, ) -> Option<Arc<SourceFile>>
__ecma
and __utils
only.pub fn new_source_file(
&self,
filename: Arc<FileName>,
src: String,
) -> Arc<SourceFile>
Available on crate features __ecma
and __utils
only.
pub fn new_source_file( &self, filename: Arc<FileName>, src: String, ) -> Arc<SourceFile>
__ecma
and __utils
only.Creates a new source_file. This does not ensure that only one SourceFile exists per file name.
pub fn new_source_file_from(
&self,
filename: Arc<FileName>,
src: Arc<String>,
) -> Arc<SourceFile>
Available on crate features __ecma
and __utils
only.
pub fn new_source_file_from( &self, filename: Arc<FileName>, src: Arc<String>, ) -> Arc<SourceFile>
__ecma
and __utils
only.Creates a new source_file. This does not ensure that only one SourceFile exists per file name.
src
should not have UTF8 BOM
pub fn mk_substr_filename(&self, sp: Span) -> String
__ecma
and __utils
only.pub fn doctest_offset_line(&self, orig: usize) -> usize
__ecma
and __utils
only.pub fn lookup_char_pos(&self, pos: BytePos) -> Loc
Available on crate features __ecma
and __utils
only.
pub fn lookup_char_pos(&self, pos: BytePos) -> Loc
__ecma
and __utils
only.Lookup source information about a BytePos
pub fn try_lookup_char_pos(
&self,
pos: BytePos,
) -> Result<Loc, SourceMapLookupError>
Available on crate features __ecma
and __utils
only.
pub fn try_lookup_char_pos( &self, pos: BytePos, ) -> Result<Loc, SourceMapLookupError>
__ecma
and __utils
only.Lookup source information about a BytePos
pub fn lookup_line(
&self,
pos: BytePos,
) -> Result<SourceFileAndLine, Arc<SourceFile>>
Available on crate features __ecma
and __utils
only.
pub fn lookup_line( &self, pos: BytePos, ) -> Result<SourceFileAndLine, Arc<SourceFile>>
__ecma
and __utils
only.If the relevant source_file is empty, we don’t return a line number.
pub fn lookup_char_pos_adj(&self, pos: BytePos) -> LocWithOpt
__ecma
and __utils
only.pub fn merge_spans(&self, sp_lhs: Span, sp_rhs: Span) -> Option<Span>
Available on crate features __ecma
and __utils
only.
pub fn merge_spans(&self, sp_lhs: Span, sp_rhs: Span) -> Option<Span>
__ecma
and __utils
only.Returns Some(span)
, a union of the lhs and rhs span. The lhs must
precede the rhs. If there are gaps between lhs and rhs, the
resulting union will cross these gaps. For this to work, the spans
have to be:
- the ctxt of both spans much match
- the lhs span needs to end on the same line the rhs span begins
- the lhs span must start at or before the rhs span
pub fn span_to_string(&self, sp: Span) -> String
__ecma
and __utils
only.pub fn span_to_filename(&self, sp: Span) -> Arc<FileName>
__ecma
and __utils
only.pub fn span_to_unmapped_path(&self, sp: Span) -> Arc<FileName>
__ecma
and __utils
only.pub fn is_multiline(&self, sp: Span) -> bool
__ecma
and __utils
only.pub fn span_to_lines(&self, sp: Span) -> Result<FileLines, Box<SpanLinesError>>
__ecma
and __utils
only.pub fn with_snippet_of_span<F, Ret>(
&self,
sp: Span,
op: F,
) -> Result<Ret, Box<SpanSnippetError>>
Available on crate features __ecma
and __utils
only.
pub fn with_snippet_of_span<F, Ret>( &self, sp: Span, op: F, ) -> Result<Ret, Box<SpanSnippetError>>
__ecma
and __utils
only.Calls op
with the source code located at sp
.
pub fn span_to_margin(&self, sp: Span) -> Option<usize>
__ecma
and __utils
only.pub fn with_span_to_prev_source<F, Ret>(
&self,
sp: Span,
op: F,
) -> Result<Ret, Box<SpanSnippetError>>
Available on crate features __ecma
and __utils
only.
pub fn with_span_to_prev_source<F, Ret>( &self, sp: Span, op: F, ) -> Result<Ret, Box<SpanSnippetError>>
__ecma
and __utils
only.Calls the given closure with the source snippet before the given Span
pub fn span_to_prev_source(
&self,
sp: Span,
) -> Result<String, Box<SpanSnippetError>>
Available on crate features __ecma
and __utils
only.
pub fn span_to_prev_source( &self, sp: Span, ) -> Result<String, Box<SpanSnippetError>>
__ecma
and __utils
only.Return the source snippet as String
before the given Span
pub fn with_span_to_next_source<F, Ret>(
&self,
sp: Span,
op: F,
) -> Result<Ret, Box<SpanSnippetError>>
Available on crate features __ecma
and __utils
only.
pub fn with_span_to_next_source<F, Ret>( &self, sp: Span, op: F, ) -> Result<Ret, Box<SpanSnippetError>>
__ecma
and __utils
only.Calls the given closure with the source snippet after the given Span
pub fn span_to_next_source(
&self,
sp: Span,
) -> Result<String, Box<SpanSnippetError>>
Available on crate features __ecma
and __utils
only.
pub fn span_to_next_source( &self, sp: Span, ) -> Result<String, Box<SpanSnippetError>>
__ecma
and __utils
only.Return the source snippet as String
after the given Span
pub fn span_extend_to_prev_char(&self, sp: Span, c: char) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_extend_to_prev_char(&self, sp: Span, c: char) -> Span
__ecma
and __utils
only.Extend the given Span
to just after the previous occurrence of c
.
Return the same span if no character could be found or if an error
occurred while retrieving the code snippet.
pub fn span_extend_to_prev_str(
&self,
sp: Span,
pat: &str,
accept_newlines: bool,
) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_extend_to_prev_str( &self, sp: Span, pat: &str, accept_newlines: bool, ) -> Span
__ecma
and __utils
only.Extend the given Span
to just after the previous occurrence of pat
when surrounded by whitespace. Return the same span if no character
could be found or if an error occurred while retrieving the code
snippet.
pub fn span_extend_to_next_char(&self, sp: Span, c: char) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_extend_to_next_char(&self, sp: Span, c: char) -> Span
__ecma
and __utils
only.Extend the given Span
to just after the next occurrence of c
.
Return the same span if no character could be found or if an error
occurred while retrieving the code snippet.
pub fn span_extend_to_next_str(
&self,
sp: Span,
pat: &str,
accept_newlines: bool,
) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_extend_to_next_str( &self, sp: Span, pat: &str, accept_newlines: bool, ) -> Span
__ecma
and __utils
only.Extend the given Span
to just after the next occurrence of pat
when surrounded by whitespace. Return the same span if no character
could be found or if an error occurred while retrieving the code
snippet.
pub fn span_until_char(&self, sp: Span, c: char) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_until_char(&self, sp: Span, c: char) -> Span
__ecma
and __utils
only.Given a Span
, try to get a shorter span ending before the first
occurrence of c
char
§Notes
This method returns a dummy span for a dummy span.
pub fn span_through_char(&self, sp: Span, c: char) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_through_char(&self, sp: Span, c: char) -> Span
__ecma
and __utils
only.Given a Span
, try to get a shorter span ending just after the first
occurrence of char
c
.
§Notes
This method returns a dummy span for a dummy span.
pub fn span_until_non_whitespace(&self, sp: Span) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_until_non_whitespace(&self, sp: Span) -> Span
__ecma
and __utils
only.Given a Span
, get a new Span
covering the first token and all its
trailing whitespace or the original Span
.
If sp
points to "let mut x"
, then a span pointing at "let "
will
be returned.
pub fn span_until_whitespace(&self, sp: Span) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_until_whitespace(&self, sp: Span) -> Span
__ecma
and __utils
only.Given a Span
, get a new Span
covering the first token without its
trailing whitespace or the original Span
in case of error.
If sp
points to "let mut x"
, then a span pointing at "let"
will be
returned.
pub fn span_take_while<P>(&self, sp: Span, predicate: P) -> Span
Available on crate features __ecma
and __utils
only.
pub fn span_take_while<P>(&self, sp: Span, predicate: P) -> Span
__ecma
and __utils
only.Given a Span
, get a shorter one until predicate
yields false.
pub fn def_span(&self, sp: Span) -> Span
__ecma
and __utils
only.pub fn start_point(&self, sp: Span) -> Span
Available on crate features __ecma
and __utils
only.
pub fn start_point(&self, sp: Span) -> Span
__ecma
and __utils
only.Returns a new span representing just the start-point of this span
pub fn end_point(&self, sp: Span) -> Span
Available on crate features __ecma
and __utils
only.
pub fn end_point(&self, sp: Span) -> Span
__ecma
and __utils
only.Returns a new span representing just the end-point of this span
pub fn next_point(&self, sp: Span) -> Span
Available on crate features __ecma
and __utils
only.
pub fn next_point(&self, sp: Span) -> Span
__ecma
and __utils
only.Returns a new span representing the next character after the end-point of this span
pub fn get_source_file(&self, filename: &FileName) -> Option<Arc<SourceFile>>
__ecma
and __utils
only.pub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos
Available on crate features __ecma
and __utils
only.
pub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos
__ecma
and __utils
only.For a global BytePos compute the local offset within the containing SourceFile
pub fn try_lookup_byte_offset(
&self,
bpos: BytePos,
) -> Result<SourceFileAndBytePos, SourceMapLookupError>
Available on crate features __ecma
and __utils
only.
pub fn try_lookup_byte_offset( &self, bpos: BytePos, ) -> Result<SourceFileAndBytePos, SourceMapLookupError>
__ecma
and __utils
only.For a global BytePos compute the local offset within the containing SourceFile
pub fn span_to_char_offset(&self, file: &SourceFile, span: Span) -> (u32, u32)
Available on crate features __ecma
and __utils
only.
pub fn span_to_char_offset(&self, file: &SourceFile, span: Span) -> (u32, u32)
__ecma
and __utils
only.Converts a span of absolute BytePos to a CharPos relative to the source_file.
pub fn count_lines(&self) -> usize
__ecma
and __utils
only.pub fn generate_fn_name_span(&self, span: Span) -> Option<Span>
__ecma
and __utils
only.pub fn generate_local_type_param_snippet(
&self,
span: Span,
) -> Option<(Span, String)>
Available on crate features __ecma
and __utils
only.
pub fn generate_local_type_param_snippet( &self, span: Span, ) -> Option<(Span, String)>
__ecma
and __utils
only.Take the span of a type parameter in a function signature and try to generate a span for the function name (with generics) and a new snippet for this span with the pointed type parameter as a new local type parameter.
For instance:
// Given span
fn my_function(param: T)
// ^ Original span
// Result
fn my_function(param: T)
// ^^^^^^^^^^^ Generated span with snippet `my_function<T>`
Attention: The method used is very fragile since it essentially duplicates the work of the parser. If you need to use this function or something similar, please consider updating the source_map functions and this function to something more robust.
pub fn build_source_map(&self, mappings: &[(BytePos, LineCol)]) -> SourceMap
__ecma
and __utils
only.pub fn build_source_map_from(
&self,
mappings: &[(BytePos, LineCol)],
orig: Option<&SourceMap>,
) -> SourceMap
Available on crate features __ecma
and __utils
only.
pub fn build_source_map_from( &self, mappings: &[(BytePos, LineCol)], orig: Option<&SourceMap>, ) -> SourceMap
__ecma
and __utils
only.Creates a .map
file.
pub fn build_source_map_with_config( &self, mappings: &[(BytePos, LineCol)], orig: Option<&SourceMap>, config: impl SourceMapGenConfig, ) -> SourceMap
__ecma
and __utils
only.Trait Implementations§
§impl SourceMapper for SourceMap
impl SourceMapper for SourceMap
§fn span_to_snippet(&self, sp: Span) -> Result<String, Box<SpanSnippetError>>
fn span_to_snippet(&self, sp: Span) -> Result<String, Box<SpanSnippetError>>
Return the source snippet as String
corresponding to the given Span
fn lookup_char_pos(&self, pos: BytePos) -> Loc
fn span_to_lines(&self, sp: Span) -> Result<FileLines, Box<SpanLinesError>>
fn span_to_string(&self, sp: Span) -> String
fn span_to_filename(&self, sp: Span) -> Arc<FileName>
fn merge_spans(&self, sp_lhs: Span, sp_rhs: Span) -> Option<Span>
fn call_span_if_macro(&self, sp: Span) -> Span
fn doctest_offset_line(&self, line: usize) -> usize
§impl SourceMapperExt for SourceMap
impl SourceMapperExt for SourceMap
fn get_code_map(&self) -> &dyn SourceMapper
fn is_on_same_line(&self, _lo: BytePos, _hi: BytePos) -> bool
fn should_write_separating_line_terminator( &self, prev: Option<Span>, next: Option<Span>, format: ListFormat, ) -> bool
fn should_write_leading_line_terminator( &self, parent_node: Span, first_child: Option<Span>, format: ListFormat, ) -> bool
fn should_write_closing_line_terminator( &self, parent_node: Span, last_child: Option<Span>, format: ListFormat, ) -> bool
Auto Trait Implementations§
impl !Freeze for SourceMap
impl !RefUnwindSafe for SourceMap
impl Send for SourceMap
impl Sync for SourceMap
impl Unpin for SourceMap
impl !UnwindSafe for SourceMap
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
§impl<T> Conv for T
impl<T> Conv for T
§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
§fn deserialize(
&self,
deserializer: &mut D,
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
§impl<D> OwoColorize for D
impl<D> OwoColorize for D
§fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
§fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
§fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
§fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
§fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
§fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
§fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
§fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
§fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
§fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
§fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
§fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
§fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
§fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
§fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
§fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
§fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
§fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
§fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
§fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
§fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
§fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
§fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
§fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
§fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
§fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
OwoColorize::fg
or
a color-specific method, such as OwoColorize::green
, Read more§fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
OwoColorize::bg
or
a color-specific method, such as OwoColorize::on_yellow
, Read more§fn fg_rgb<const R: u8, const G: u8, const B: u8>(
&self,
) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>
fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>
§fn bg_rgb<const R: u8, const G: u8, const B: u8>(
&self,
) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>
fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>
§fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>
fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>
§fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>
fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.