pub struct GetStaticMapFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetStaticMap
.
GetStaticMap
provides high-quality static map images with customizable options. You can modify the map's appearance and overlay additional information. It's an ideal solution for applications requiring tailored static map snapshots.
Implementations§
Source§impl GetStaticMapFluentBuilder
impl GetStaticMapFluentBuilder
Sourcepub fn as_input(&self) -> &GetStaticMapInputBuilder
pub fn as_input(&self) -> &GetStaticMapInputBuilder
Access the GetStaticMap as a reference.
Sourcepub async fn send(
self,
) -> Result<GetStaticMapOutput, SdkError<GetStaticMapError, HttpResponse>>
pub async fn send( self, ) -> Result<GetStaticMapOutput, SdkError<GetStaticMapError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Sourcepub fn customize(
self,
) -> CustomizableOperation<GetStaticMapOutput, GetStaticMapError, Self>
pub fn customize( self, ) -> CustomizableOperation<GetStaticMapOutput, GetStaticMapError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
Sourcepub fn bounding_box(self, input: impl Into<String>) -> Self
pub fn bounding_box(self, input: impl Into<String>) -> Self
Takes in two pairs of coordinates, \[Lon, Lat\], denoting south-westerly and north-easterly edges of the image. The underlying area becomes the view of the image.
Example: -123.17075,49.26959,-123.08125,49.31429
Sourcepub fn set_bounding_box(self, input: Option<String>) -> Self
pub fn set_bounding_box(self, input: Option<String>) -> Self
Takes in two pairs of coordinates, \[Lon, Lat\], denoting south-westerly and north-easterly edges of the image. The underlying area becomes the view of the image.
Example: -123.17075,49.26959,-123.08125,49.31429
Sourcepub fn get_bounding_box(&self) -> &Option<String>
pub fn get_bounding_box(&self) -> &Option<String>
Takes in two pairs of coordinates, \[Lon, Lat\], denoting south-westerly and north-easterly edges of the image. The underlying area becomes the view of the image.
Example: -123.17075,49.26959,-123.08125,49.31429
Sourcepub fn bounded_positions(self, input: impl Into<String>) -> Self
pub fn bounded_positions(self, input: impl Into<String>) -> Self
Takes in two or more pair of coordinates, \[Lon, Lat\], with each coordinate separated by a comma. The API will generate an image to encompass all of the provided coordinates.
Cannot be used with Zoom
and or Radius
Example: 97.170451,78.039098,99.045536,27.176178
Sourcepub fn set_bounded_positions(self, input: Option<String>) -> Self
pub fn set_bounded_positions(self, input: Option<String>) -> Self
Takes in two or more pair of coordinates, \[Lon, Lat\], with each coordinate separated by a comma. The API will generate an image to encompass all of the provided coordinates.
Cannot be used with Zoom
and or Radius
Example: 97.170451,78.039098,99.045536,27.176178
Sourcepub fn get_bounded_positions(&self) -> &Option<String>
pub fn get_bounded_positions(&self) -> &Option<String>
Takes in two or more pair of coordinates, \[Lon, Lat\], with each coordinate separated by a comma. The API will generate an image to encompass all of the provided coordinates.
Cannot be used with Zoom
and or Radius
Example: 97.170451,78.039098,99.045536,27.176178
Sourcepub fn center(self, input: impl Into<String>) -> Self
pub fn center(self, input: impl Into<String>) -> Self
Takes in a pair of coordinates, \[Lon, Lat\], which becomes the center point of the image. This parameter requires that either zoom or radius is set.
Cannot be used with Zoom
and or Radius
Example: 49.295,-123.108
Sourcepub fn set_center(self, input: Option<String>) -> Self
pub fn set_center(self, input: Option<String>) -> Self
Takes in a pair of coordinates, \[Lon, Lat\], which becomes the center point of the image. This parameter requires that either zoom or radius is set.
Cannot be used with Zoom
and or Radius
Example: 49.295,-123.108
Sourcepub fn get_center(&self) -> &Option<String>
pub fn get_center(&self) -> &Option<String>
Takes in a pair of coordinates, \[Lon, Lat\], which becomes the center point of the image. This parameter requires that either zoom or radius is set.
Cannot be used with Zoom
and or Radius
Example: 49.295,-123.108
Sourcepub fn color_scheme(self, input: ColorScheme) -> Self
pub fn color_scheme(self, input: ColorScheme) -> Self
Sets color tone for map, such as dark and light for specific map styles. It only applies to vector map styles, such as Standard.
Example: Light
Default value: Light
Valid values for ColorScheme
are case sensitive.
Sourcepub fn set_color_scheme(self, input: Option<ColorScheme>) -> Self
pub fn set_color_scheme(self, input: Option<ColorScheme>) -> Self
Sets color tone for map, such as dark and light for specific map styles. It only applies to vector map styles, such as Standard.
Example: Light
Default value: Light
Valid values for ColorScheme
are case sensitive.
Sourcepub fn get_color_scheme(&self) -> &Option<ColorScheme>
pub fn get_color_scheme(&self) -> &Option<ColorScheme>
Sets color tone for map, such as dark and light for specific map styles. It only applies to vector map styles, such as Standard.
Example: Light
Default value: Light
Valid values for ColorScheme
are case sensitive.
Sourcepub fn compact_overlay(self, input: impl Into<String>) -> Self
pub fn compact_overlay(self, input: impl Into<String>) -> Self
Takes in a string to draw geometries on the image. The input is a comma separated format as follows format: \[Lon, Lat\]
Example: line:-122.407653,37.798557,-122.413291,37.802443;color=%23DD0000;width=7;outline-color=#00DD00;outline-width=5yd|point:-122.40572,37.80004;label=Fog Hill Market;size=large;text-color=%23DD0000;color=#EE4B2B
Currently it supports the following geometry types: point, line and polygon. It does not support multiPoint , multiLine and multiPolgyon.
Sourcepub fn set_compact_overlay(self, input: Option<String>) -> Self
pub fn set_compact_overlay(self, input: Option<String>) -> Self
Takes in a string to draw geometries on the image. The input is a comma separated format as follows format: \[Lon, Lat\]
Example: line:-122.407653,37.798557,-122.413291,37.802443;color=%23DD0000;width=7;outline-color=#00DD00;outline-width=5yd|point:-122.40572,37.80004;label=Fog Hill Market;size=large;text-color=%23DD0000;color=#EE4B2B
Currently it supports the following geometry types: point, line and polygon. It does not support multiPoint , multiLine and multiPolgyon.
Sourcepub fn get_compact_overlay(&self) -> &Option<String>
pub fn get_compact_overlay(&self) -> &Option<String>
Takes in a string to draw geometries on the image. The input is a comma separated format as follows format: \[Lon, Lat\]
Example: line:-122.407653,37.798557,-122.413291,37.802443;color=%23DD0000;width=7;outline-color=#00DD00;outline-width=5yd|point:-122.40572,37.80004;label=Fog Hill Market;size=large;text-color=%23DD0000;color=#EE4B2B
Currently it supports the following geometry types: point, line and polygon. It does not support multiPoint , multiLine and multiPolgyon.
Sourcepub fn crop_labels(self, input: bool) -> Self
pub fn crop_labels(self, input: bool) -> Self
It is a flag that takes in true or false. It prevents the labels that are on the edge of the image from being cut or obscured.
Sourcepub fn set_crop_labels(self, input: Option<bool>) -> Self
pub fn set_crop_labels(self, input: Option<bool>) -> Self
It is a flag that takes in true or false. It prevents the labels that are on the edge of the image from being cut or obscured.
Sourcepub fn get_crop_labels(&self) -> &Option<bool>
pub fn get_crop_labels(&self) -> &Option<bool>
It is a flag that takes in true or false. It prevents the labels that are on the edge of the image from being cut or obscured.
Sourcepub fn geo_json_overlay(self, input: impl Into<String>) -> Self
pub fn geo_json_overlay(self, input: impl Into<String>) -> Self
Takes in a string to draw geometries on the image. The input is a valid GeoJSON collection object.
Example: {"type":"FeatureCollection","features": \[{"type":"Feature","geometry":{"type":"MultiPoint","coordinates": \[\[-90.076345,51.504107\],\[-0.074451,51.506892\]\]},"properties": {"color":"#00DD00"}}\]}
Sourcepub fn set_geo_json_overlay(self, input: Option<String>) -> Self
pub fn set_geo_json_overlay(self, input: Option<String>) -> Self
Takes in a string to draw geometries on the image. The input is a valid GeoJSON collection object.
Example: {"type":"FeatureCollection","features": \[{"type":"Feature","geometry":{"type":"MultiPoint","coordinates": \[\[-90.076345,51.504107\],\[-0.074451,51.506892\]\]},"properties": {"color":"#00DD00"}}\]}
Sourcepub fn get_geo_json_overlay(&self) -> &Option<String>
pub fn get_geo_json_overlay(&self) -> &Option<String>
Takes in a string to draw geometries on the image. The input is a valid GeoJSON collection object.
Example: {"type":"FeatureCollection","features": \[{"type":"Feature","geometry":{"type":"MultiPoint","coordinates": \[\[-90.076345,51.504107\],\[-0.074451,51.506892\]\]},"properties": {"color":"#00DD00"}}\]}
Sourcepub fn set_height(self, input: Option<i32>) -> Self
pub fn set_height(self, input: Option<i32>) -> Self
Specifies the height of the map image.
Sourcepub fn get_height(&self) -> &Option<i32>
pub fn get_height(&self) -> &Option<i32>
Specifies the height of the map image.
Sourcepub fn key(self, input: impl Into<String>) -> Self
pub fn key(self, input: impl Into<String>) -> Self
Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.
Sourcepub fn set_key(self, input: Option<String>) -> Self
pub fn set_key(self, input: Option<String>) -> Self
Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.
Sourcepub fn get_key(&self) -> &Option<String>
pub fn get_key(&self) -> &Option<String>
Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.
Sourcepub fn label_size(self, input: LabelSize) -> Self
pub fn label_size(self, input: LabelSize) -> Self
Overrides the label size auto-calculated by FileName
. Takes in one of the values - Small
or Large
.
Sourcepub fn set_label_size(self, input: Option<LabelSize>) -> Self
pub fn set_label_size(self, input: Option<LabelSize>) -> Self
Overrides the label size auto-calculated by FileName
. Takes in one of the values - Small
or Large
.
Sourcepub fn get_label_size(&self) -> &Option<LabelSize>
pub fn get_label_size(&self) -> &Option<LabelSize>
Overrides the label size auto-calculated by FileName
. Takes in one of the values - Small
or Large
.
Sourcepub fn language(self, input: impl Into<String>) -> Self
pub fn language(self, input: impl Into<String>) -> Self
Specifies the language on the map labels using the BCP 47 language tag, limited to ISO 639-1 two-letter language codes. If the specified language data isn't available for the map image, the labels will default to the regional primary language.
Supported codes:
-
ar
-
as
-
az
-
be
-
bg
-
bn
-
bs
-
ca
-
cs
-
cy
-
da
-
de
-
el
-
en
-
es
-
et
-
eu
-
fi
-
fo
-
fr
-
ga
-
gl
-
gn
-
gu
-
he
-
hi
-
hr
-
hu
-
hy
-
id
-
is
-
it
-
ja
-
ka
-
kk
-
km
-
kn
-
ko
-
ky
-
lt
-
lv
-
mk
-
ml
-
mr
-
ms
-
mt
-
my
-
nl
-
no
-
or
-
pa
-
pl
-
pt
-
ro
-
ru
-
sk
-
sl
-
sq
-
sr
-
sv
-
ta
-
te
-
th
-
tr
-
uk
-
uz
-
vi
-
zh
Sourcepub fn set_language(self, input: Option<String>) -> Self
pub fn set_language(self, input: Option<String>) -> Self
Specifies the language on the map labels using the BCP 47 language tag, limited to ISO 639-1 two-letter language codes. If the specified language data isn't available for the map image, the labels will default to the regional primary language.
Supported codes:
-
ar
-
as
-
az
-
be
-
bg
-
bn
-
bs
-
ca
-
cs
-
cy
-
da
-
de
-
el
-
en
-
es
-
et
-
eu
-
fi
-
fo
-
fr
-
ga
-
gl
-
gn
-
gu
-
he
-
hi
-
hr
-
hu
-
hy
-
id
-
is
-
it
-
ja
-
ka
-
kk
-
km
-
kn
-
ko
-
ky
-
lt
-
lv
-
mk
-
ml
-
mr
-
ms
-
mt
-
my
-
nl
-
no
-
or
-
pa
-
pl
-
pt
-
ro
-
ru
-
sk
-
sl
-
sq
-
sr
-
sv
-
ta
-
te
-
th
-
tr
-
uk
-
uz
-
vi
-
zh
Sourcepub fn get_language(&self) -> &Option<String>
pub fn get_language(&self) -> &Option<String>
Specifies the language on the map labels using the BCP 47 language tag, limited to ISO 639-1 two-letter language codes. If the specified language data isn't available for the map image, the labels will default to the regional primary language.
Supported codes:
-
ar
-
as
-
az
-
be
-
bg
-
bn
-
bs
-
ca
-
cs
-
cy
-
da
-
de
-
el
-
en
-
es
-
et
-
eu
-
fi
-
fo
-
fr
-
ga
-
gl
-
gn
-
gu
-
he
-
hi
-
hr
-
hu
-
hy
-
id
-
is
-
it
-
ja
-
ka
-
kk
-
km
-
kn
-
ko
-
ky
-
lt
-
lv
-
mk
-
ml
-
mr
-
ms
-
mt
-
my
-
nl
-
no
-
or
-
pa
-
pl
-
pt
-
ro
-
ru
-
sk
-
sl
-
sq
-
sr
-
sv
-
ta
-
te
-
th
-
tr
-
uk
-
uz
-
vi
-
zh
Sourcepub fn padding(self, input: i32) -> Self
pub fn padding(self, input: i32) -> Self
Applies additional space (in pixels) around overlay feature to prevent them from being cut or obscured.
Value for max and min is determined by:
Min: 1
Max: min(height, width)/4
Example: 100
Sourcepub fn set_padding(self, input: Option<i32>) -> Self
pub fn set_padding(self, input: Option<i32>) -> Self
Applies additional space (in pixels) around overlay feature to prevent them from being cut or obscured.
Value for max and min is determined by:
Min: 1
Max: min(height, width)/4
Example: 100
Sourcepub fn get_padding(&self) -> &Option<i32>
pub fn get_padding(&self) -> &Option<i32>
Applies additional space (in pixels) around overlay feature to prevent them from being cut or obscured.
Value for max and min is determined by:
Min: 1
Max: min(height, width)/4
Example: 100
Sourcepub fn political_view(self, input: impl Into<String>) -> Self
pub fn political_view(self, input: impl Into<String>) -> Self
Specifies the political view, using ISO 3166-2 or ISO 3166-3 country code format.
The following political views are currently supported:
-
ARG
: Argentina's view on the Southern Patagonian Ice Field and Tierra Del Fuego, including the Falkland Islands, South Georgia, and South Sandwich Islands -
EGY
: Egypt's view on Bir Tawil -
IND
: India's view on Gilgit-Baltistan -
KEN
: Kenya's view on the Ilemi Triangle -
MAR
: Morocco's view on Western Sahara -
RUS
: Russia's view on Crimea -
SDN
: Sudan's view on the Halaib Triangle -
SRB
: Serbia's view on Kosovo, Vukovar, and Sarengrad Islands -
SUR
: Suriname's view on the Courantyne Headwaters and Lawa Headwaters -
SYR
: Syria's view on the Golan Heights -
TUR
: Turkey's view on Cyprus and Northern Cyprus -
TZA
: Tanzania's view on Lake Malawi -
URY
: Uruguay's view on Rincon de Artigas -
VNM
: Vietnam's view on the Paracel Islands and Spratly Islands
Sourcepub fn set_political_view(self, input: Option<String>) -> Self
pub fn set_political_view(self, input: Option<String>) -> Self
Specifies the political view, using ISO 3166-2 or ISO 3166-3 country code format.
The following political views are currently supported:
-
ARG
: Argentina's view on the Southern Patagonian Ice Field and Tierra Del Fuego, including the Falkland Islands, South Georgia, and South Sandwich Islands -
EGY
: Egypt's view on Bir Tawil -
IND
: India's view on Gilgit-Baltistan -
KEN
: Kenya's view on the Ilemi Triangle -
MAR
: Morocco's view on Western Sahara -
RUS
: Russia's view on Crimea -
SDN
: Sudan's view on the Halaib Triangle -
SRB
: Serbia's view on Kosovo, Vukovar, and Sarengrad Islands -
SUR
: Suriname's view on the Courantyne Headwaters and Lawa Headwaters -
SYR
: Syria's view on the Golan Heights -
TUR
: Turkey's view on Cyprus and Northern Cyprus -
TZA
: Tanzania's view on Lake Malawi -
URY
: Uruguay's view on Rincon de Artigas -
VNM
: Vietnam's view on the Paracel Islands and Spratly Islands
Sourcepub fn get_political_view(&self) -> &Option<String>
pub fn get_political_view(&self) -> &Option<String>
Specifies the political view, using ISO 3166-2 or ISO 3166-3 country code format.
The following political views are currently supported:
-
ARG
: Argentina's view on the Southern Patagonian Ice Field and Tierra Del Fuego, including the Falkland Islands, South Georgia, and South Sandwich Islands -
EGY
: Egypt's view on Bir Tawil -
IND
: India's view on Gilgit-Baltistan -
KEN
: Kenya's view on the Ilemi Triangle -
MAR
: Morocco's view on Western Sahara -
RUS
: Russia's view on Crimea -
SDN
: Sudan's view on the Halaib Triangle -
SRB
: Serbia's view on Kosovo, Vukovar, and Sarengrad Islands -
SUR
: Suriname's view on the Courantyne Headwaters and Lawa Headwaters -
SYR
: Syria's view on the Golan Heights -
TUR
: Turkey's view on Cyprus and Northern Cyprus -
TZA
: Tanzania's view on Lake Malawi -
URY
: Uruguay's view on Rincon de Artigas -
VNM
: Vietnam's view on the Paracel Islands and Spratly Islands
Sourcepub fn points_of_interests(self, input: MapFeatureMode) -> Self
pub fn points_of_interests(self, input: MapFeatureMode) -> Self
Determines if the result image will display icons representing points of interest on the map.
Sourcepub fn set_points_of_interests(self, input: Option<MapFeatureMode>) -> Self
pub fn set_points_of_interests(self, input: Option<MapFeatureMode>) -> Self
Determines if the result image will display icons representing points of interest on the map.
Sourcepub fn get_points_of_interests(&self) -> &Option<MapFeatureMode>
pub fn get_points_of_interests(&self) -> &Option<MapFeatureMode>
Determines if the result image will display icons representing points of interest on the map.
Sourcepub fn radius(self, input: i64) -> Self
pub fn radius(self, input: i64) -> Self
Used with center parameter, it specifies the zoom of the image where you can control it on a granular level. Takes in any value >= 1
.
Example: 1500
Cannot be used with Zoom
.
Unit: Meters
Sourcepub fn set_radius(self, input: Option<i64>) -> Self
pub fn set_radius(self, input: Option<i64>) -> Self
Used with center parameter, it specifies the zoom of the image where you can control it on a granular level. Takes in any value >= 1
.
Example: 1500
Cannot be used with Zoom
.
Unit: Meters
Sourcepub fn get_radius(&self) -> &Option<i64>
pub fn get_radius(&self) -> &Option<i64>
Used with center parameter, it specifies the zoom of the image where you can control it on a granular level. Takes in any value >= 1
.
Example: 1500
Cannot be used with Zoom
.
Unit: Meters
Sourcepub fn file_name(self, input: impl Into<String>) -> Self
pub fn file_name(self, input: impl Into<String>) -> Self
The map scaling parameter to size the image, icons, and labels. It follows the pattern of ^map(@2x)?$
.
Example: map, map@2x
Sourcepub fn set_file_name(self, input: Option<String>) -> Self
pub fn set_file_name(self, input: Option<String>) -> Self
The map scaling parameter to size the image, icons, and labels. It follows the pattern of ^map(@2x)?$
.
Example: map, map@2x
Sourcepub fn get_file_name(&self) -> &Option<String>
pub fn get_file_name(&self) -> &Option<String>
The map scaling parameter to size the image, icons, and labels. It follows the pattern of ^map(@2x)?$
.
Example: map, map@2x
Sourcepub fn scale_bar_unit(self, input: ScaleBarUnit) -> Self
pub fn scale_bar_unit(self, input: ScaleBarUnit) -> Self
Displays a scale on the bottom right of the map image with the unit specified in the input.
Example: KilometersMiles, Miles, Kilometers, MilesKilometers
Sourcepub fn set_scale_bar_unit(self, input: Option<ScaleBarUnit>) -> Self
pub fn set_scale_bar_unit(self, input: Option<ScaleBarUnit>) -> Self
Displays a scale on the bottom right of the map image with the unit specified in the input.
Example: KilometersMiles, Miles, Kilometers, MilesKilometers
Sourcepub fn get_scale_bar_unit(&self) -> &Option<ScaleBarUnit>
pub fn get_scale_bar_unit(&self) -> &Option<ScaleBarUnit>
Displays a scale on the bottom right of the map image with the unit specified in the input.
Example: KilometersMiles, Miles, Kilometers, MilesKilometers
Sourcepub fn style(self, input: StaticMapStyle) -> Self
pub fn style(self, input: StaticMapStyle) -> Self
Style
specifies the desired map style.
Sourcepub fn set_style(self, input: Option<StaticMapStyle>) -> Self
pub fn set_style(self, input: Option<StaticMapStyle>) -> Self
Style
specifies the desired map style.
Sourcepub fn get_style(&self) -> &Option<StaticMapStyle>
pub fn get_style(&self) -> &Option<StaticMapStyle>
Style
specifies the desired map style.
Sourcepub fn zoom(self, input: f32) -> Self
pub fn zoom(self, input: f32) -> Self
Specifies the zoom level of the map image.
Cannot be used with Radius
.
Trait Implementations§
Source§impl Clone for GetStaticMapFluentBuilder
impl Clone for GetStaticMapFluentBuilder
Source§fn clone(&self) -> GetStaticMapFluentBuilder
fn clone(&self) -> GetStaticMapFluentBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for GetStaticMapFluentBuilder
impl !RefUnwindSafe for GetStaticMapFluentBuilder
impl Send for GetStaticMapFluentBuilder
impl Sync for GetStaticMapFluentBuilder
impl Unpin for GetStaticMapFluentBuilder
impl !UnwindSafe for GetStaticMapFluentBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);