#[non_exhaustive]pub struct ContainerInstanceBuilder { /* private fields */ }
Expand description
A builder for ContainerInstance
.
Implementations§
Source§impl ContainerInstanceBuilder
impl ContainerInstanceBuilder
Sourcepub fn container_instance_arn(self, input: impl Into<String>) -> Self
pub fn container_instance_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the container instance. For more information about the ARN format, see Amazon Resource Name (ARN) in the Amazon ECS Developer Guide.
Sourcepub fn set_container_instance_arn(self, input: Option<String>) -> Self
pub fn set_container_instance_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the container instance. For more information about the ARN format, see Amazon Resource Name (ARN) in the Amazon ECS Developer Guide.
Sourcepub fn get_container_instance_arn(&self) -> &Option<String>
pub fn get_container_instance_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the container instance. For more information about the ARN format, see Amazon Resource Name (ARN) in the Amazon ECS Developer Guide.
Sourcepub fn ec2_instance_id(self, input: impl Into<String>) -> Self
pub fn ec2_instance_id(self, input: impl Into<String>) -> Self
The ID of the container instance. For Amazon EC2 instances, this value is the Amazon EC2 instance ID. For external instances, this value is the Amazon Web Services Systems Manager managed instance ID.
Sourcepub fn set_ec2_instance_id(self, input: Option<String>) -> Self
pub fn set_ec2_instance_id(self, input: Option<String>) -> Self
The ID of the container instance. For Amazon EC2 instances, this value is the Amazon EC2 instance ID. For external instances, this value is the Amazon Web Services Systems Manager managed instance ID.
Sourcepub fn get_ec2_instance_id(&self) -> &Option<String>
pub fn get_ec2_instance_id(&self) -> &Option<String>
The ID of the container instance. For Amazon EC2 instances, this value is the Amazon EC2 instance ID. For external instances, this value is the Amazon Web Services Systems Manager managed instance ID.
Sourcepub fn capacity_provider_name(self, input: impl Into<String>) -> Self
pub fn capacity_provider_name(self, input: impl Into<String>) -> Self
The capacity provider that's associated with the container instance.
Sourcepub fn set_capacity_provider_name(self, input: Option<String>) -> Self
pub fn set_capacity_provider_name(self, input: Option<String>) -> Self
The capacity provider that's associated with the container instance.
Sourcepub fn get_capacity_provider_name(&self) -> &Option<String>
pub fn get_capacity_provider_name(&self) -> &Option<String>
The capacity provider that's associated with the container instance.
Sourcepub fn version(self, input: i64) -> Self
pub fn version(self, input: i64) -> Self
The version counter for the container instance. Every time a container instance experiences a change that triggers a CloudWatch event, the version counter is incremented. If you're replicating your Amazon ECS container instance state with CloudWatch Events, you can compare the version of a container instance reported by the Amazon ECS APIs with the version reported in CloudWatch Events for the container instance (inside the detail
object) to verify that the version in your event stream is current.
Sourcepub fn set_version(self, input: Option<i64>) -> Self
pub fn set_version(self, input: Option<i64>) -> Self
The version counter for the container instance. Every time a container instance experiences a change that triggers a CloudWatch event, the version counter is incremented. If you're replicating your Amazon ECS container instance state with CloudWatch Events, you can compare the version of a container instance reported by the Amazon ECS APIs with the version reported in CloudWatch Events for the container instance (inside the detail
object) to verify that the version in your event stream is current.
Sourcepub fn get_version(&self) -> &Option<i64>
pub fn get_version(&self) -> &Option<i64>
The version counter for the container instance. Every time a container instance experiences a change that triggers a CloudWatch event, the version counter is incremented. If you're replicating your Amazon ECS container instance state with CloudWatch Events, you can compare the version of a container instance reported by the Amazon ECS APIs with the version reported in CloudWatch Events for the container instance (inside the detail
object) to verify that the version in your event stream is current.
Sourcepub fn version_info(self, input: VersionInfo) -> Self
pub fn version_info(self, input: VersionInfo) -> Self
The version information for the Amazon ECS container agent and Docker daemon running on the container instance.
Sourcepub fn set_version_info(self, input: Option<VersionInfo>) -> Self
pub fn set_version_info(self, input: Option<VersionInfo>) -> Self
The version information for the Amazon ECS container agent and Docker daemon running on the container instance.
Sourcepub fn get_version_info(&self) -> &Option<VersionInfo>
pub fn get_version_info(&self) -> &Option<VersionInfo>
The version information for the Amazon ECS container agent and Docker daemon running on the container instance.
Sourcepub fn remaining_resources(self, input: Resource) -> Self
pub fn remaining_resources(self, input: Resource) -> Self
Appends an item to remaining_resources
.
To override the contents of this collection use set_remaining_resources
.
For CPU and memory resource types, this parameter describes the remaining CPU and memory that wasn't already allocated to tasks and is therefore available for new tasks. For port resource types, this parameter describes the ports that were reserved by the Amazon ECS container agent (at instance registration time) and any task containers that have reserved port mappings on the host (with the host
or bridge
network mode). Any port that's not specified here is available for new tasks.
Sourcepub fn set_remaining_resources(self, input: Option<Vec<Resource>>) -> Self
pub fn set_remaining_resources(self, input: Option<Vec<Resource>>) -> Self
For CPU and memory resource types, this parameter describes the remaining CPU and memory that wasn't already allocated to tasks and is therefore available for new tasks. For port resource types, this parameter describes the ports that were reserved by the Amazon ECS container agent (at instance registration time) and any task containers that have reserved port mappings on the host (with the host
or bridge
network mode). Any port that's not specified here is available for new tasks.
Sourcepub fn get_remaining_resources(&self) -> &Option<Vec<Resource>>
pub fn get_remaining_resources(&self) -> &Option<Vec<Resource>>
For CPU and memory resource types, this parameter describes the remaining CPU and memory that wasn't already allocated to tasks and is therefore available for new tasks. For port resource types, this parameter describes the ports that were reserved by the Amazon ECS container agent (at instance registration time) and any task containers that have reserved port mappings on the host (with the host
or bridge
network mode). Any port that's not specified here is available for new tasks.
Sourcepub fn registered_resources(self, input: Resource) -> Self
pub fn registered_resources(self, input: Resource) -> Self
Appends an item to registered_resources
.
To override the contents of this collection use set_registered_resources
.
For CPU and memory resource types, this parameter describes the amount of each resource that was available on the container instance when the container agent registered it with Amazon ECS. This value represents the total amount of CPU and memory that can be allocated on this container instance to tasks. For port resource types, this parameter describes the ports that were reserved by the Amazon ECS container agent when it registered the container instance with Amazon ECS.
Sourcepub fn set_registered_resources(self, input: Option<Vec<Resource>>) -> Self
pub fn set_registered_resources(self, input: Option<Vec<Resource>>) -> Self
For CPU and memory resource types, this parameter describes the amount of each resource that was available on the container instance when the container agent registered it with Amazon ECS. This value represents the total amount of CPU and memory that can be allocated on this container instance to tasks. For port resource types, this parameter describes the ports that were reserved by the Amazon ECS container agent when it registered the container instance with Amazon ECS.
Sourcepub fn get_registered_resources(&self) -> &Option<Vec<Resource>>
pub fn get_registered_resources(&self) -> &Option<Vec<Resource>>
For CPU and memory resource types, this parameter describes the amount of each resource that was available on the container instance when the container agent registered it with Amazon ECS. This value represents the total amount of CPU and memory that can be allocated on this container instance to tasks. For port resource types, this parameter describes the ports that were reserved by the Amazon ECS container agent when it registered the container instance with Amazon ECS.
Sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
The status of the container instance. The valid values are REGISTERING
, REGISTRATION_FAILED
, ACTIVE
, INACTIVE
, DEREGISTERING
, or DRAINING
.
If your account has opted in to the awsvpcTrunking
account setting, then any newly registered container instance will transition to a REGISTERING
status while the trunk elastic network interface is provisioned for the instance. If the registration fails, the instance will transition to a REGISTRATION_FAILED
status. You can describe the container instance and see the reason for failure in the statusReason
parameter. Once the container instance is terminated, the instance transitions to a DEREGISTERING
status while the trunk elastic network interface is deprovisioned. The instance then transitions to an INACTIVE
status.
The ACTIVE
status indicates that the container instance can accept tasks. The DRAINING
indicates that new tasks aren't placed on the container instance and any service tasks running on the container instance are removed if possible. For more information, see Container instance draining in the Amazon Elastic Container Service Developer Guide.
Sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
The status of the container instance. The valid values are REGISTERING
, REGISTRATION_FAILED
, ACTIVE
, INACTIVE
, DEREGISTERING
, or DRAINING
.
If your account has opted in to the awsvpcTrunking
account setting, then any newly registered container instance will transition to a REGISTERING
status while the trunk elastic network interface is provisioned for the instance. If the registration fails, the instance will transition to a REGISTRATION_FAILED
status. You can describe the container instance and see the reason for failure in the statusReason
parameter. Once the container instance is terminated, the instance transitions to a DEREGISTERING
status while the trunk elastic network interface is deprovisioned. The instance then transitions to an INACTIVE
status.
The ACTIVE
status indicates that the container instance can accept tasks. The DRAINING
indicates that new tasks aren't placed on the container instance and any service tasks running on the container instance are removed if possible. For more information, see Container instance draining in the Amazon Elastic Container Service Developer Guide.
Sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
The status of the container instance. The valid values are REGISTERING
, REGISTRATION_FAILED
, ACTIVE
, INACTIVE
, DEREGISTERING
, or DRAINING
.
If your account has opted in to the awsvpcTrunking
account setting, then any newly registered container instance will transition to a REGISTERING
status while the trunk elastic network interface is provisioned for the instance. If the registration fails, the instance will transition to a REGISTRATION_FAILED
status. You can describe the container instance and see the reason for failure in the statusReason
parameter. Once the container instance is terminated, the instance transitions to a DEREGISTERING
status while the trunk elastic network interface is deprovisioned. The instance then transitions to an INACTIVE
status.
The ACTIVE
status indicates that the container instance can accept tasks. The DRAINING
indicates that new tasks aren't placed on the container instance and any service tasks running on the container instance are removed if possible. For more information, see Container instance draining in the Amazon Elastic Container Service Developer Guide.
Sourcepub fn status_reason(self, input: impl Into<String>) -> Self
pub fn status_reason(self, input: impl Into<String>) -> Self
The reason that the container instance reached its current status.
Sourcepub fn set_status_reason(self, input: Option<String>) -> Self
pub fn set_status_reason(self, input: Option<String>) -> Self
The reason that the container instance reached its current status.
Sourcepub fn get_status_reason(&self) -> &Option<String>
pub fn get_status_reason(&self) -> &Option<String>
The reason that the container instance reached its current status.
Sourcepub fn agent_connected(self, input: bool) -> Self
pub fn agent_connected(self, input: bool) -> Self
This parameter returns true
if the agent is connected to Amazon ECS. An instance with an agent that may be unhealthy or stopped return false
. Only instances connected to an agent can accept task placement requests.
Sourcepub fn set_agent_connected(self, input: Option<bool>) -> Self
pub fn set_agent_connected(self, input: Option<bool>) -> Self
This parameter returns true
if the agent is connected to Amazon ECS. An instance with an agent that may be unhealthy or stopped return false
. Only instances connected to an agent can accept task placement requests.
Sourcepub fn get_agent_connected(&self) -> &Option<bool>
pub fn get_agent_connected(&self) -> &Option<bool>
This parameter returns true
if the agent is connected to Amazon ECS. An instance with an agent that may be unhealthy or stopped return false
. Only instances connected to an agent can accept task placement requests.
Sourcepub fn running_tasks_count(self, input: i32) -> Self
pub fn running_tasks_count(self, input: i32) -> Self
The number of tasks on the container instance that have a desired status (desiredStatus
) of RUNNING
.
Sourcepub fn set_running_tasks_count(self, input: Option<i32>) -> Self
pub fn set_running_tasks_count(self, input: Option<i32>) -> Self
The number of tasks on the container instance that have a desired status (desiredStatus
) of RUNNING
.
Sourcepub fn get_running_tasks_count(&self) -> &Option<i32>
pub fn get_running_tasks_count(&self) -> &Option<i32>
The number of tasks on the container instance that have a desired status (desiredStatus
) of RUNNING
.
Sourcepub fn pending_tasks_count(self, input: i32) -> Self
pub fn pending_tasks_count(self, input: i32) -> Self
The number of tasks on the container instance that are in the PENDING
status.
Sourcepub fn set_pending_tasks_count(self, input: Option<i32>) -> Self
pub fn set_pending_tasks_count(self, input: Option<i32>) -> Self
The number of tasks on the container instance that are in the PENDING
status.
Sourcepub fn get_pending_tasks_count(&self) -> &Option<i32>
pub fn get_pending_tasks_count(&self) -> &Option<i32>
The number of tasks on the container instance that are in the PENDING
status.
Sourcepub fn agent_update_status(self, input: AgentUpdateStatus) -> Self
pub fn agent_update_status(self, input: AgentUpdateStatus) -> Self
The status of the most recent agent update. If an update wasn't ever requested, this value is NULL
.
Sourcepub fn set_agent_update_status(self, input: Option<AgentUpdateStatus>) -> Self
pub fn set_agent_update_status(self, input: Option<AgentUpdateStatus>) -> Self
The status of the most recent agent update. If an update wasn't ever requested, this value is NULL
.
Sourcepub fn get_agent_update_status(&self) -> &Option<AgentUpdateStatus>
pub fn get_agent_update_status(&self) -> &Option<AgentUpdateStatus>
The status of the most recent agent update. If an update wasn't ever requested, this value is NULL
.
Sourcepub fn attributes(self, input: Attribute) -> Self
pub fn attributes(self, input: Attribute) -> Self
Appends an item to attributes
.
To override the contents of this collection use set_attributes
.
The attributes set for the container instance, either by the Amazon ECS container agent at instance registration or manually with the PutAttributes operation.
Sourcepub fn set_attributes(self, input: Option<Vec<Attribute>>) -> Self
pub fn set_attributes(self, input: Option<Vec<Attribute>>) -> Self
The attributes set for the container instance, either by the Amazon ECS container agent at instance registration or manually with the PutAttributes operation.
Sourcepub fn get_attributes(&self) -> &Option<Vec<Attribute>>
pub fn get_attributes(&self) -> &Option<Vec<Attribute>>
The attributes set for the container instance, either by the Amazon ECS container agent at instance registration or manually with the PutAttributes operation.
Sourcepub fn registered_at(self, input: DateTime) -> Self
pub fn registered_at(self, input: DateTime) -> Self
The Unix timestamp for the time when the container instance was registered.
Sourcepub fn set_registered_at(self, input: Option<DateTime>) -> Self
pub fn set_registered_at(self, input: Option<DateTime>) -> Self
The Unix timestamp for the time when the container instance was registered.
Sourcepub fn get_registered_at(&self) -> &Option<DateTime>
pub fn get_registered_at(&self) -> &Option<DateTime>
The Unix timestamp for the time when the container instance was registered.
Sourcepub fn attachments(self, input: Attachment) -> Self
pub fn attachments(self, input: Attachment) -> Self
Appends an item to attachments
.
To override the contents of this collection use set_attachments
.
The resources attached to a container instance, such as an elastic network interface.
Sourcepub fn set_attachments(self, input: Option<Vec<Attachment>>) -> Self
pub fn set_attachments(self, input: Option<Vec<Attachment>>) -> Self
The resources attached to a container instance, such as an elastic network interface.
Sourcepub fn get_attachments(&self) -> &Option<Vec<Attachment>>
pub fn get_attachments(&self) -> &Option<Vec<Attachment>>
The resources attached to a container instance, such as an elastic network interface.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.
The following basic restrictions apply to tags:
-
Maximum number of tags per resource - 50
-
For each resource, each tag key must be unique, and each tag key can have only one value.
-
Maximum key length - 128 Unicode characters in UTF-8
-
Maximum value length - 256 Unicode characters in UTF-8
-
If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
-
Tag keys and values are case-sensitive.
-
Do not use
aws:
,AWS:
, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.
The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.
The following basic restrictions apply to tags:
-
Maximum number of tags per resource - 50
-
For each resource, each tag key must be unique, and each tag key can have only one value.
-
Maximum key length - 128 Unicode characters in UTF-8
-
Maximum value length - 256 Unicode characters in UTF-8
-
If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
-
Tag keys and values are case-sensitive.
-
Do not use
aws:
,AWS:
, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.
The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.
The following basic restrictions apply to tags:
-
Maximum number of tags per resource - 50
-
For each resource, each tag key must be unique, and each tag key can have only one value.
-
Maximum key length - 128 Unicode characters in UTF-8
-
Maximum value length - 256 Unicode characters in UTF-8
-
If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
-
Tag keys and values are case-sensitive.
-
Do not use
aws:
,AWS:
, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.
Sourcepub fn health_status(self, input: ContainerInstanceHealthStatus) -> Self
pub fn health_status(self, input: ContainerInstanceHealthStatus) -> Self
An object representing the health status of the container instance.
Sourcepub fn set_health_status(
self,
input: Option<ContainerInstanceHealthStatus>,
) -> Self
pub fn set_health_status( self, input: Option<ContainerInstanceHealthStatus>, ) -> Self
An object representing the health status of the container instance.
Sourcepub fn get_health_status(&self) -> &Option<ContainerInstanceHealthStatus>
pub fn get_health_status(&self) -> &Option<ContainerInstanceHealthStatus>
An object representing the health status of the container instance.
Sourcepub fn build(self) -> ContainerInstance
pub fn build(self) -> ContainerInstance
Consumes the builder and constructs a ContainerInstance
.
Trait Implementations§
Source§impl Clone for ContainerInstanceBuilder
impl Clone for ContainerInstanceBuilder
Source§fn clone(&self) -> ContainerInstanceBuilder
fn clone(&self) -> ContainerInstanceBuilder
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ContainerInstanceBuilder
impl Debug for ContainerInstanceBuilder
Source§impl Default for ContainerInstanceBuilder
impl Default for ContainerInstanceBuilder
Source§fn default() -> ContainerInstanceBuilder
fn default() -> ContainerInstanceBuilder
Source§impl PartialEq for ContainerInstanceBuilder
impl PartialEq for ContainerInstanceBuilder
Source§fn eq(&self, other: &ContainerInstanceBuilder) -> bool
fn eq(&self, other: &ContainerInstanceBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ContainerInstanceBuilder
Auto Trait Implementations§
impl Freeze for ContainerInstanceBuilder
impl RefUnwindSafe for ContainerInstanceBuilder
impl Send for ContainerInstanceBuilder
impl Sync for ContainerInstanceBuilder
impl Unpin for ContainerInstanceBuilder
impl UnwindSafe for ContainerInstanceBuilder
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);