pub struct CreateLabelingJobFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateLabelingJob
.
Creates a job that uses workers to label the data objects in your input dataset. You can use the labeled data to train machine learning models.
You can select your workforce from one of three providers:
-
A private workforce that you create. It can include employees, contractors, and outside experts. Use a private workforce when want the data to stay within your organization or when a specific set of skills is required.
-
One or more vendors that you select from the Amazon Web Services Marketplace. Vendors provide expertise in specific areas.
-
The Amazon Mechanical Turk workforce. This is the largest workforce, but it should only be used for public data or data that has been stripped of any personally identifiable information.
You can also use automated data labeling to reduce the number of data objects that need to be labeled by a human. Automated data labeling uses active learning to determine if a data object can be labeled by machine or if it needs to be sent to a human worker. For more information, see Using Automated Data Labeling.
The data objects to be labeled are contained in an Amazon S3 bucket. You create a manifest file that describes the location of each object. For more information, see Using Input and Output Data.
The output can be used as the manifest file for another labeling job or as training data for your machine learning models.
You can use this operation to create a static labeling job or a streaming labeling job. A static labeling job stops if all data objects in the input manifest file identified in ManifestS3Uri
have been labeled. A streaming labeling job runs perpetually until it is manually stopped, or remains idle for 10 days. You can send new data objects to an active (InProgress
) streaming labeling job in real time. To learn how to create a static labeling job, see Create a Labeling Job (API) in the Amazon SageMaker Developer Guide. To learn how to create a streaming labeling job, see Create a Streaming Labeling Job.
Implementations§
Source§impl CreateLabelingJobFluentBuilder
impl CreateLabelingJobFluentBuilder
Sourcepub fn as_input(&self) -> &CreateLabelingJobInputBuilder
pub fn as_input(&self) -> &CreateLabelingJobInputBuilder
Access the CreateLabelingJob as a reference.
Sourcepub async fn send(
self,
) -> Result<CreateLabelingJobOutput, SdkError<CreateLabelingJobError, HttpResponse>>
pub async fn send( self, ) -> Result<CreateLabelingJobOutput, SdkError<CreateLabelingJobError, 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<CreateLabelingJobOutput, CreateLabelingJobError, Self>
pub fn customize( self, ) -> CustomizableOperation<CreateLabelingJobOutput, CreateLabelingJobError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
Sourcepub fn labeling_job_name(self, input: impl Into<String>) -> Self
pub fn labeling_job_name(self, input: impl Into<String>) -> Self
The name of the labeling job. This name is used to identify the job in a list of labeling jobs. Labeling job names must be unique within an Amazon Web Services account and region. LabelingJobName
is not case sensitive. For example, Example-job and example-job are considered the same labeling job name by Ground Truth.
Sourcepub fn set_labeling_job_name(self, input: Option<String>) -> Self
pub fn set_labeling_job_name(self, input: Option<String>) -> Self
The name of the labeling job. This name is used to identify the job in a list of labeling jobs. Labeling job names must be unique within an Amazon Web Services account and region. LabelingJobName
is not case sensitive. For example, Example-job and example-job are considered the same labeling job name by Ground Truth.
Sourcepub fn get_labeling_job_name(&self) -> &Option<String>
pub fn get_labeling_job_name(&self) -> &Option<String>
The name of the labeling job. This name is used to identify the job in a list of labeling jobs. Labeling job names must be unique within an Amazon Web Services account and region. LabelingJobName
is not case sensitive. For example, Example-job and example-job are considered the same labeling job name by Ground Truth.
Sourcepub fn label_attribute_name(self, input: impl Into<String>) -> Self
pub fn label_attribute_name(self, input: impl Into<String>) -> Self
The attribute name to use for the label in the output manifest file. This is the key for the key/value pair formed with the label that a worker assigns to the object. The LabelAttributeName
must meet the following requirements.
-
The name can't end with "-metadata".
-
If you are using one of the following built-in task types, the attribute name must end with "-ref". If the task type you are using is not listed below, the attribute name must not end with "-ref".
-
Image semantic segmentation (
SemanticSegmentation)
, and adjustment (AdjustmentSemanticSegmentation
) and verification (VerificationSemanticSegmentation
) labeling jobs for this task type. -
Video frame object detection (
VideoObjectDetection
), and adjustment and verification (AdjustmentVideoObjectDetection
) labeling jobs for this task type. -
Video frame object tracking (
VideoObjectTracking
), and adjustment and verification (AdjustmentVideoObjectTracking
) labeling jobs for this task type. -
3D point cloud semantic segmentation (
3DPointCloudSemanticSegmentation
), and adjustment and verification (Adjustment3DPointCloudSemanticSegmentation
) labeling jobs for this task type. -
3D point cloud object tracking (
3DPointCloudObjectTracking
), and adjustment and verification (Adjustment3DPointCloudObjectTracking
) labeling jobs for this task type.
-
If you are creating an adjustment or verification labeling job, you must use a different LabelAttributeName
than the one used in the original labeling job. The original labeling job is the Ground Truth labeling job that produced the labels that you want verified or adjusted. To learn more about adjustment and verification labeling jobs, see Verify and Adjust Labels.
Sourcepub fn set_label_attribute_name(self, input: Option<String>) -> Self
pub fn set_label_attribute_name(self, input: Option<String>) -> Self
The attribute name to use for the label in the output manifest file. This is the key for the key/value pair formed with the label that a worker assigns to the object. The LabelAttributeName
must meet the following requirements.
-
The name can't end with "-metadata".
-
If you are using one of the following built-in task types, the attribute name must end with "-ref". If the task type you are using is not listed below, the attribute name must not end with "-ref".
-
Image semantic segmentation (
SemanticSegmentation)
, and adjustment (AdjustmentSemanticSegmentation
) and verification (VerificationSemanticSegmentation
) labeling jobs for this task type. -
Video frame object detection (
VideoObjectDetection
), and adjustment and verification (AdjustmentVideoObjectDetection
) labeling jobs for this task type. -
Video frame object tracking (
VideoObjectTracking
), and adjustment and verification (AdjustmentVideoObjectTracking
) labeling jobs for this task type. -
3D point cloud semantic segmentation (
3DPointCloudSemanticSegmentation
), and adjustment and verification (Adjustment3DPointCloudSemanticSegmentation
) labeling jobs for this task type. -
3D point cloud object tracking (
3DPointCloudObjectTracking
), and adjustment and verification (Adjustment3DPointCloudObjectTracking
) labeling jobs for this task type.
-
If you are creating an adjustment or verification labeling job, you must use a different LabelAttributeName
than the one used in the original labeling job. The original labeling job is the Ground Truth labeling job that produced the labels that you want verified or adjusted. To learn more about adjustment and verification labeling jobs, see Verify and Adjust Labels.
Sourcepub fn get_label_attribute_name(&self) -> &Option<String>
pub fn get_label_attribute_name(&self) -> &Option<String>
The attribute name to use for the label in the output manifest file. This is the key for the key/value pair formed with the label that a worker assigns to the object. The LabelAttributeName
must meet the following requirements.
-
The name can't end with "-metadata".
-
If you are using one of the following built-in task types, the attribute name must end with "-ref". If the task type you are using is not listed below, the attribute name must not end with "-ref".
-
Image semantic segmentation (
SemanticSegmentation)
, and adjustment (AdjustmentSemanticSegmentation
) and verification (VerificationSemanticSegmentation
) labeling jobs for this task type. -
Video frame object detection (
VideoObjectDetection
), and adjustment and verification (AdjustmentVideoObjectDetection
) labeling jobs for this task type. -
Video frame object tracking (
VideoObjectTracking
), and adjustment and verification (AdjustmentVideoObjectTracking
) labeling jobs for this task type. -
3D point cloud semantic segmentation (
3DPointCloudSemanticSegmentation
), and adjustment and verification (Adjustment3DPointCloudSemanticSegmentation
) labeling jobs for this task type. -
3D point cloud object tracking (
3DPointCloudObjectTracking
), and adjustment and verification (Adjustment3DPointCloudObjectTracking
) labeling jobs for this task type.
-
If you are creating an adjustment or verification labeling job, you must use a different LabelAttributeName
than the one used in the original labeling job. The original labeling job is the Ground Truth labeling job that produced the labels that you want verified or adjusted. To learn more about adjustment and verification labeling jobs, see Verify and Adjust Labels.
Sourcepub fn input_config(self, input: LabelingJobInputConfig) -> Self
pub fn input_config(self, input: LabelingJobInputConfig) -> Self
Input data for the labeling job, such as the Amazon S3 location of the data objects and the location of the manifest file that describes the data objects.
You must specify at least one of the following: S3DataSource
or SnsDataSource
.
-
Use
SnsDataSource
to specify an SNS input topic for a streaming labeling job. If you do not specify and SNS input topic ARN, Ground Truth will create a one-time labeling job that stops after all data objects in the input manifest file have been labeled. -
Use
S3DataSource
to specify an input manifest file for both streaming and one-time labeling jobs. Adding anS3DataSource
is optional if you useSnsDataSource
to create a streaming labeling job.
If you use the Amazon Mechanical Turk workforce, your input data should not include confidential information, personal information or protected health information. Use ContentClassifiers
to specify that your data is free of personally identifiable information and adult content.
Sourcepub fn set_input_config(self, input: Option<LabelingJobInputConfig>) -> Self
pub fn set_input_config(self, input: Option<LabelingJobInputConfig>) -> Self
Input data for the labeling job, such as the Amazon S3 location of the data objects and the location of the manifest file that describes the data objects.
You must specify at least one of the following: S3DataSource
or SnsDataSource
.
-
Use
SnsDataSource
to specify an SNS input topic for a streaming labeling job. If you do not specify and SNS input topic ARN, Ground Truth will create a one-time labeling job that stops after all data objects in the input manifest file have been labeled. -
Use
S3DataSource
to specify an input manifest file for both streaming and one-time labeling jobs. Adding anS3DataSource
is optional if you useSnsDataSource
to create a streaming labeling job.
If you use the Amazon Mechanical Turk workforce, your input data should not include confidential information, personal information or protected health information. Use ContentClassifiers
to specify that your data is free of personally identifiable information and adult content.
Sourcepub fn get_input_config(&self) -> &Option<LabelingJobInputConfig>
pub fn get_input_config(&self) -> &Option<LabelingJobInputConfig>
Input data for the labeling job, such as the Amazon S3 location of the data objects and the location of the manifest file that describes the data objects.
You must specify at least one of the following: S3DataSource
or SnsDataSource
.
-
Use
SnsDataSource
to specify an SNS input topic for a streaming labeling job. If you do not specify and SNS input topic ARN, Ground Truth will create a one-time labeling job that stops after all data objects in the input manifest file have been labeled. -
Use
S3DataSource
to specify an input manifest file for both streaming and one-time labeling jobs. Adding anS3DataSource
is optional if you useSnsDataSource
to create a streaming labeling job.
If you use the Amazon Mechanical Turk workforce, your input data should not include confidential information, personal information or protected health information. Use ContentClassifiers
to specify that your data is free of personally identifiable information and adult content.
Sourcepub fn output_config(self, input: LabelingJobOutputConfig) -> Self
pub fn output_config(self, input: LabelingJobOutputConfig) -> Self
The location of the output data and the Amazon Web Services Key Management Service key ID for the key used to encrypt the output data, if any.
Sourcepub fn set_output_config(self, input: Option<LabelingJobOutputConfig>) -> Self
pub fn set_output_config(self, input: Option<LabelingJobOutputConfig>) -> Self
The location of the output data and the Amazon Web Services Key Management Service key ID for the key used to encrypt the output data, if any.
Sourcepub fn get_output_config(&self) -> &Option<LabelingJobOutputConfig>
pub fn get_output_config(&self) -> &Option<LabelingJobOutputConfig>
The location of the output data and the Amazon Web Services Key Management Service key ID for the key used to encrypt the output data, if any.
Sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Number (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data labeling. You must grant this role the necessary permissions so that Amazon SageMaker can successfully complete data labeling.
Sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Number (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data labeling. You must grant this role the necessary permissions so that Amazon SageMaker can successfully complete data labeling.
Sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The Amazon Resource Number (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data labeling. You must grant this role the necessary permissions so that Amazon SageMaker can successfully complete data labeling.
Sourcepub fn label_category_config_s3_uri(self, input: impl Into<String>) -> Self
pub fn label_category_config_s3_uri(self, input: impl Into<String>) -> Self
The S3 URI of the file, referred to as a label category configuration file, that defines the categories used to label the data objects.
For 3D point cloud and video frame task types, you can add label category attributes and frame attributes to your label category configuration file. To learn how, see Create a Labeling Category Configuration File for 3D Point Cloud Labeling Jobs.
For named entity recognition jobs, in addition to "labels"
, you must provide worker instructions in the label category configuration file using the "instructions"
parameter: "instructions": {"shortInstruction":"<h1>Add header</h1><p>Add Instructions</p>", "fullInstruction":"<p>Add additional instructions.</p>"}
. For details and an example, see Create a Named Entity Recognition Labeling Job (API) .
For all other built-in task types and custom tasks, your label category configuration file must be a JSON file in the following format. Identify the labels you want to use by replacing label_1
, label_2
,...
,label_n
with your label categories.
{
"document-version": "2018-11-28",
"labels": \[{"label": "label_1"},{"label": "label_2"},...{"label": "label_n"}\]
}
Note the following about the label category configuration file:
-
For image classification and text classification (single and multi-label) you must specify at least two label categories. For all other task types, the minimum number of label categories required is one.
-
Each label category must be unique, you cannot specify duplicate label categories.
-
If you create a 3D point cloud or video frame adjustment or verification labeling job, you must include
auditLabelAttributeName
in the label category configuration. Use this parameter to enter theLabelAttributeName
of the labeling job you want to adjust or verify annotations of.
Sourcepub fn set_label_category_config_s3_uri(self, input: Option<String>) -> Self
pub fn set_label_category_config_s3_uri(self, input: Option<String>) -> Self
The S3 URI of the file, referred to as a label category configuration file, that defines the categories used to label the data objects.
For 3D point cloud and video frame task types, you can add label category attributes and frame attributes to your label category configuration file. To learn how, see Create a Labeling Category Configuration File for 3D Point Cloud Labeling Jobs.
For named entity recognition jobs, in addition to "labels"
, you must provide worker instructions in the label category configuration file using the "instructions"
parameter: "instructions": {"shortInstruction":"<h1>Add header</h1><p>Add Instructions</p>", "fullInstruction":"<p>Add additional instructions.</p>"}
. For details and an example, see Create a Named Entity Recognition Labeling Job (API) .
For all other built-in task types and custom tasks, your label category configuration file must be a JSON file in the following format. Identify the labels you want to use by replacing label_1
, label_2
,...
,label_n
with your label categories.
{
"document-version": "2018-11-28",
"labels": \[{"label": "label_1"},{"label": "label_2"},...{"label": "label_n"}\]
}
Note the following about the label category configuration file:
-
For image classification and text classification (single and multi-label) you must specify at least two label categories. For all other task types, the minimum number of label categories required is one.
-
Each label category must be unique, you cannot specify duplicate label categories.
-
If you create a 3D point cloud or video frame adjustment or verification labeling job, you must include
auditLabelAttributeName
in the label category configuration. Use this parameter to enter theLabelAttributeName
of the labeling job you want to adjust or verify annotations of.
Sourcepub fn get_label_category_config_s3_uri(&self) -> &Option<String>
pub fn get_label_category_config_s3_uri(&self) -> &Option<String>
The S3 URI of the file, referred to as a label category configuration file, that defines the categories used to label the data objects.
For 3D point cloud and video frame task types, you can add label category attributes and frame attributes to your label category configuration file. To learn how, see Create a Labeling Category Configuration File for 3D Point Cloud Labeling Jobs.
For named entity recognition jobs, in addition to "labels"
, you must provide worker instructions in the label category configuration file using the "instructions"
parameter: "instructions": {"shortInstruction":"<h1>Add header</h1><p>Add Instructions</p>", "fullInstruction":"<p>Add additional instructions.</p>"}
. For details and an example, see Create a Named Entity Recognition Labeling Job (API) .
For all other built-in task types and custom tasks, your label category configuration file must be a JSON file in the following format. Identify the labels you want to use by replacing label_1
, label_2
,...
,label_n
with your label categories.
{
"document-version": "2018-11-28",
"labels": \[{"label": "label_1"},{"label": "label_2"},...{"label": "label_n"}\]
}
Note the following about the label category configuration file:
-
For image classification and text classification (single and multi-label) you must specify at least two label categories. For all other task types, the minimum number of label categories required is one.
-
Each label category must be unique, you cannot specify duplicate label categories.
-
If you create a 3D point cloud or video frame adjustment or verification labeling job, you must include
auditLabelAttributeName
in the label category configuration. Use this parameter to enter theLabelAttributeName
of the labeling job you want to adjust or verify annotations of.
Sourcepub fn stopping_conditions(self, input: LabelingJobStoppingConditions) -> Self
pub fn stopping_conditions(self, input: LabelingJobStoppingConditions) -> Self
A set of conditions for stopping the labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.
Sourcepub fn set_stopping_conditions(
self,
input: Option<LabelingJobStoppingConditions>,
) -> Self
pub fn set_stopping_conditions( self, input: Option<LabelingJobStoppingConditions>, ) -> Self
A set of conditions for stopping the labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.
Sourcepub fn get_stopping_conditions(&self) -> &Option<LabelingJobStoppingConditions>
pub fn get_stopping_conditions(&self) -> &Option<LabelingJobStoppingConditions>
A set of conditions for stopping the labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.
Sourcepub fn labeling_job_algorithms_config(
self,
input: LabelingJobAlgorithmsConfig,
) -> Self
pub fn labeling_job_algorithms_config( self, input: LabelingJobAlgorithmsConfig, ) -> Self
Configures the information required to perform automated data labeling.
Sourcepub fn set_labeling_job_algorithms_config(
self,
input: Option<LabelingJobAlgorithmsConfig>,
) -> Self
pub fn set_labeling_job_algorithms_config( self, input: Option<LabelingJobAlgorithmsConfig>, ) -> Self
Configures the information required to perform automated data labeling.
Sourcepub fn get_labeling_job_algorithms_config(
&self,
) -> &Option<LabelingJobAlgorithmsConfig>
pub fn get_labeling_job_algorithms_config( &self, ) -> &Option<LabelingJobAlgorithmsConfig>
Configures the information required to perform automated data labeling.
Sourcepub fn human_task_config(self, input: HumanTaskConfig) -> Self
pub fn human_task_config(self, input: HumanTaskConfig) -> Self
Configures the labeling task and how it is presented to workers; including, but not limited to price, keywords, and batch size (task count).
Sourcepub fn set_human_task_config(self, input: Option<HumanTaskConfig>) -> Self
pub fn set_human_task_config(self, input: Option<HumanTaskConfig>) -> Self
Configures the labeling task and how it is presented to workers; including, but not limited to price, keywords, and batch size (task count).
Sourcepub fn get_human_task_config(&self) -> &Option<HumanTaskConfig>
pub fn get_human_task_config(&self) -> &Option<HumanTaskConfig>
Configures the labeling task and how it is presented to workers; including, but not limited to price, keywords, and batch size (task count).
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
An array of key/value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.
An array of key/value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.
An array of key/value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.
Trait Implementations§
Source§impl Clone for CreateLabelingJobFluentBuilder
impl Clone for CreateLabelingJobFluentBuilder
Source§fn clone(&self) -> CreateLabelingJobFluentBuilder
fn clone(&self) -> CreateLabelingJobFluentBuilder
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for CreateLabelingJobFluentBuilder
impl !RefUnwindSafe for CreateLabelingJobFluentBuilder
impl Send for CreateLabelingJobFluentBuilder
impl Sync for CreateLabelingJobFluentBuilder
impl Unpin for CreateLabelingJobFluentBuilder
impl !UnwindSafe for CreateLabelingJobFluentBuilder
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);