Struct aws_sdk_wellarchitected::Client

source ·
pub struct Client { /* private fields */ }
Expand description

Client for AWS Well-Architected Tool

Client for invoking operations on AWS Well-Architected Tool. Each operation on AWS Well-Architected Tool is a method on this this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.

§Constructing a Client

A Config is required to construct a client. For most use cases, the aws-config crate should be used to automatically resolve this config using aws_config::load_from_env(), since this will resolve an SdkConfig which can be shared across multiple different AWS SDK clients. This config resolution process can be customized by calling aws_config::from_env() instead, which returns a ConfigLoader that uses the builder pattern to customize the default config.

In the simplest case, creating a client looks as follows:

let config = aws_config::load_from_env().await;
let client = aws_sdk_wellarchitected::Client::new(&config);

Occasionally, SDKs may have additional service-specific values that can be set on the Config that is absent from SdkConfig, or slightly different settings for a specific client may be desired. The Builder struct implements From<&SdkConfig>, so setting these specific settings can be done as follows:

let sdk_config = ::aws_config::load_from_env().await;
let config = aws_sdk_wellarchitected::config::Builder::from(&sdk_config)
    .some_service_specific_setting("value")
    .build();

See the aws-config docs and Config for more information on customizing configuration.

Note: Client construction is expensive due to connection thread pool initialization, and should be done once at application start-up.

§Using the Client

A client has a function for every operation that can be performed by the service. For example, the AssociateLenses operation has a Client::associate_lenses, function which returns a builder for that operation. The fluent builder ultimately has a send() function that returns an async future that returns a result, as illustrated below:

let result = client.associate_lenses()
    .workload_id("example")
    .send()
    .await;

The underlying HTTP requests that get made by this can be modified with the customize_operation function on the fluent builder. See the customize module for more information.

Implementations§

source§

impl Client

source

pub fn associate_lenses(&self) -> AssociateLensesFluentBuilder

Constructs a fluent builder for the AssociateLenses operation.

source§

impl Client

source

pub fn associate_profiles(&self) -> AssociateProfilesFluentBuilder

Constructs a fluent builder for the AssociateProfiles operation.

source§

impl Client

source

pub fn create_lens_share(&self) -> CreateLensShareFluentBuilder

Constructs a fluent builder for the CreateLensShare operation.

  • The fluent builder is configurable:
    • lens_alias(impl Into<String>) / set_lens_alias(Option<String>):
      required: true

      The alias of the lens.

      For Amazon Web Services official lenses, this is either the lens alias, such as serverless, or the lens ARN, such as arn:aws:wellarchitected:us-east-1::lens/serverless. Note that some operations (such as ExportLens and CreateLensShare) are not permitted on Amazon Web Services official lenses.

      For custom lenses, this is the lens ARN, such as arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef.

      Each lens is identified by its LensSummary$LensAlias.


    • shared_with(impl Into<String>) / set_shared_with(Option<String>):
      required: true

      The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the workload, lens, profile, or review template is shared.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: true

      A unique case-sensitive string used to ensure that this request is idempotent (executes only once).

      You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.

      This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.


  • On success, responds with CreateLensShareOutput with field(s):
  • On failure, responds with SdkError<CreateLensShareError>
source§

impl Client

source

pub fn create_lens_version(&self) -> CreateLensVersionFluentBuilder

Constructs a fluent builder for the CreateLensVersion operation.

source§

impl Client

source

pub fn create_milestone(&self) -> CreateMilestoneFluentBuilder

Constructs a fluent builder for the CreateMilestone operation.

source§

impl Client

source

pub fn create_profile(&self) -> CreateProfileFluentBuilder

Constructs a fluent builder for the CreateProfile operation.

source§

impl Client

source

pub fn create_profile_share(&self) -> CreateProfileShareFluentBuilder

Constructs a fluent builder for the CreateProfileShare operation.

source§

impl Client

source

pub fn create_review_template(&self) -> CreateReviewTemplateFluentBuilder

Constructs a fluent builder for the CreateReviewTemplate operation.

source§

impl Client

source

pub fn create_template_share(&self) -> CreateTemplateShareFluentBuilder

Constructs a fluent builder for the CreateTemplateShare operation.

source§

impl Client

source

pub fn create_workload(&self) -> CreateWorkloadFluentBuilder

Constructs a fluent builder for the CreateWorkload operation.

source§

impl Client

source

pub fn create_workload_share(&self) -> CreateWorkloadShareFluentBuilder

Constructs a fluent builder for the CreateWorkloadShare operation.

source§

impl Client

source

pub fn delete_lens(&self) -> DeleteLensFluentBuilder

Constructs a fluent builder for the DeleteLens operation.

  • The fluent builder is configurable:
    • lens_alias(impl Into<String>) / set_lens_alias(Option<String>):
      required: true

      The alias of the lens.

      For Amazon Web Services official lenses, this is either the lens alias, such as serverless, or the lens ARN, such as arn:aws:wellarchitected:us-east-1::lens/serverless. Note that some operations (such as ExportLens and CreateLensShare) are not permitted on Amazon Web Services official lenses.

      For custom lenses, this is the lens ARN, such as arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef.

      Each lens is identified by its LensSummary$LensAlias.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: true

      A unique case-sensitive string used to ensure that this request is idempotent (executes only once).

      You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.

      This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.


    • lens_status(LensStatusType) / set_lens_status(Option<LensStatusType>):
      required: true

      The status of the lens to be deleted.


  • On success, responds with DeleteLensOutput
  • On failure, responds with SdkError<DeleteLensError>
source§

impl Client

source

pub fn delete_lens_share(&self) -> DeleteLensShareFluentBuilder

Constructs a fluent builder for the DeleteLensShare operation.

  • The fluent builder is configurable:
    • share_id(impl Into<String>) / set_share_id(Option<String>):
      required: true

      The ID associated with the share.


    • lens_alias(impl Into<String>) / set_lens_alias(Option<String>):
      required: true

      The alias of the lens.

      For Amazon Web Services official lenses, this is either the lens alias, such as serverless, or the lens ARN, such as arn:aws:wellarchitected:us-east-1::lens/serverless. Note that some operations (such as ExportLens and CreateLensShare) are not permitted on Amazon Web Services official lenses.

      For custom lenses, this is the lens ARN, such as arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef.

      Each lens is identified by its LensSummary$LensAlias.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: true

      A unique case-sensitive string used to ensure that this request is idempotent (executes only once).

      You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.

      This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.


  • On success, responds with DeleteLensShareOutput
  • On failure, responds with SdkError<DeleteLensShareError>
source§

impl Client

source

pub fn delete_profile(&self) -> DeleteProfileFluentBuilder

Constructs a fluent builder for the DeleteProfile operation.

source§

impl Client

source

pub fn delete_profile_share(&self) -> DeleteProfileShareFluentBuilder

Constructs a fluent builder for the DeleteProfileShare operation.

source§

impl Client

source

pub fn delete_review_template(&self) -> DeleteReviewTemplateFluentBuilder

Constructs a fluent builder for the DeleteReviewTemplate operation.

source§

impl Client

source

pub fn delete_template_share(&self) -> DeleteTemplateShareFluentBuilder

Constructs a fluent builder for the DeleteTemplateShare operation.

source§

impl Client

source

pub fn delete_workload(&self) -> DeleteWorkloadFluentBuilder

Constructs a fluent builder for the DeleteWorkload operation.

  • The fluent builder is configurable:
    • workload_id(impl Into<String>) / set_workload_id(Option<String>):
      required: true

      The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: true

      A unique case-sensitive string used to ensure that this request is idempotent (executes only once).

      You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.

      This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.


  • On success, responds with DeleteWorkloadOutput
  • On failure, responds with SdkError<DeleteWorkloadError>
source§

impl Client

source

pub fn delete_workload_share(&self) -> DeleteWorkloadShareFluentBuilder

Constructs a fluent builder for the DeleteWorkloadShare operation.

source§

impl Client

source

pub fn disassociate_lenses(&self) -> DisassociateLensesFluentBuilder

Constructs a fluent builder for the DisassociateLenses operation.

source§

impl Client

source

pub fn disassociate_profiles(&self) -> DisassociateProfilesFluentBuilder

Constructs a fluent builder for the DisassociateProfiles operation.

source§

impl Client

source

pub fn export_lens(&self) -> ExportLensFluentBuilder

Constructs a fluent builder for the ExportLens operation.

source§

impl Client

source

pub fn get_answer(&self) -> GetAnswerFluentBuilder

Constructs a fluent builder for the GetAnswer operation.

source§

impl Client

source

pub fn get_consolidated_report(&self) -> GetConsolidatedReportFluentBuilder

Constructs a fluent builder for the GetConsolidatedReport operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn get_global_settings(&self) -> GetGlobalSettingsFluentBuilder

Constructs a fluent builder for the GetGlobalSettings operation.

source§

impl Client

source

pub fn get_lens(&self) -> GetLensFluentBuilder

Constructs a fluent builder for the GetLens operation.

  • The fluent builder is configurable:
    • lens_alias(impl Into<String>) / set_lens_alias(Option<String>):
      required: true

      The alias of the lens.

      For Amazon Web Services official lenses, this is either the lens alias, such as serverless, or the lens ARN, such as arn:aws:wellarchitected:us-east-1::lens/serverless. Note that some operations (such as ExportLens and CreateLensShare) are not permitted on Amazon Web Services official lenses.

      For custom lenses, this is the lens ARN, such as arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef.

      Each lens is identified by its LensSummary$LensAlias.


    • lens_version(impl Into<String>) / set_lens_version(Option<String>):
      required: false

      The lens version to be retrieved.


  • On success, responds with GetLensOutput with field(s):
  • On failure, responds with SdkError<GetLensError>
source§

impl Client

source

pub fn get_lens_review(&self) -> GetLensReviewFluentBuilder

Constructs a fluent builder for the GetLensReview operation.

source§

impl Client

source

pub fn get_lens_review_report(&self) -> GetLensReviewReportFluentBuilder

Constructs a fluent builder for the GetLensReviewReport operation.

source§

impl Client

source

pub fn get_lens_version_difference( &self, ) -> GetLensVersionDifferenceFluentBuilder

Constructs a fluent builder for the GetLensVersionDifference operation.

source§

impl Client

source

pub fn get_milestone(&self) -> GetMilestoneFluentBuilder

Constructs a fluent builder for the GetMilestone operation.

source§

impl Client

source

pub fn get_profile(&self) -> GetProfileFluentBuilder

Constructs a fluent builder for the GetProfile operation.

source§

impl Client

source

pub fn get_profile_template(&self) -> GetProfileTemplateFluentBuilder

Constructs a fluent builder for the GetProfileTemplate operation.

source§

impl Client

source

pub fn get_review_template(&self) -> GetReviewTemplateFluentBuilder

Constructs a fluent builder for the GetReviewTemplate operation.

source§

impl Client

source

pub fn get_review_template_answer(&self) -> GetReviewTemplateAnswerFluentBuilder

Constructs a fluent builder for the GetReviewTemplateAnswer operation.

source§

impl Client

source

pub fn get_review_template_lens_review( &self, ) -> GetReviewTemplateLensReviewFluentBuilder

Constructs a fluent builder for the GetReviewTemplateLensReview operation.

source§

impl Client

source

pub fn get_workload(&self) -> GetWorkloadFluentBuilder

Constructs a fluent builder for the GetWorkload operation.

source§

impl Client

source

pub fn import_lens(&self) -> ImportLensFluentBuilder

Constructs a fluent builder for the ImportLens operation.

source§

impl Client

source

pub fn list_answers(&self) -> ListAnswersFluentBuilder

Constructs a fluent builder for the ListAnswers operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_check_details(&self) -> ListCheckDetailsFluentBuilder

Constructs a fluent builder for the ListCheckDetails operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_check_summaries(&self) -> ListCheckSummariesFluentBuilder

Constructs a fluent builder for the ListCheckSummaries operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_lens_review_improvements( &self, ) -> ListLensReviewImprovementsFluentBuilder

Constructs a fluent builder for the ListLensReviewImprovements operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_lens_reviews(&self) -> ListLensReviewsFluentBuilder

Constructs a fluent builder for the ListLensReviews operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_lens_shares(&self) -> ListLensSharesFluentBuilder

Constructs a fluent builder for the ListLensShares operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_lenses(&self) -> ListLensesFluentBuilder

Constructs a fluent builder for the ListLenses operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_milestones(&self) -> ListMilestonesFluentBuilder

Constructs a fluent builder for the ListMilestones operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_notifications(&self) -> ListNotificationsFluentBuilder

Constructs a fluent builder for the ListNotifications operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_profile_notifications( &self, ) -> ListProfileNotificationsFluentBuilder

Constructs a fluent builder for the ListProfileNotifications operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_profile_shares(&self) -> ListProfileSharesFluentBuilder

Constructs a fluent builder for the ListProfileShares operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_profiles(&self) -> ListProfilesFluentBuilder

Constructs a fluent builder for the ListProfiles operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_review_template_answers( &self, ) -> ListReviewTemplateAnswersFluentBuilder

Constructs a fluent builder for the ListReviewTemplateAnswers operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_review_templates(&self) -> ListReviewTemplatesFluentBuilder

Constructs a fluent builder for the ListReviewTemplates operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_share_invitations(&self) -> ListShareInvitationsFluentBuilder

Constructs a fluent builder for the ListShareInvitations operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_tags_for_resource(&self) -> ListTagsForResourceFluentBuilder

Constructs a fluent builder for the ListTagsForResource operation.

source§

impl Client

source

pub fn list_template_shares(&self) -> ListTemplateSharesFluentBuilder

Constructs a fluent builder for the ListTemplateShares operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_workload_shares(&self) -> ListWorkloadSharesFluentBuilder

Constructs a fluent builder for the ListWorkloadShares operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_workloads(&self) -> ListWorkloadsFluentBuilder

Constructs a fluent builder for the ListWorkloads operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn tag_resource(&self) -> TagResourceFluentBuilder

Constructs a fluent builder for the TagResource operation.

source§

impl Client

source

pub fn untag_resource(&self) -> UntagResourceFluentBuilder

Constructs a fluent builder for the UntagResource operation.

source§

impl Client

source

pub fn update_answer(&self) -> UpdateAnswerFluentBuilder

Constructs a fluent builder for the UpdateAnswer operation.

source§

impl Client

source

pub fn update_global_settings(&self) -> UpdateGlobalSettingsFluentBuilder

Constructs a fluent builder for the UpdateGlobalSettings operation.

source§

impl Client

source

pub fn update_integration(&self) -> UpdateIntegrationFluentBuilder

Constructs a fluent builder for the UpdateIntegration operation.

source§

impl Client

source

pub fn update_lens_review(&self) -> UpdateLensReviewFluentBuilder

Constructs a fluent builder for the UpdateLensReview operation.

source§

impl Client

source

pub fn update_profile(&self) -> UpdateProfileFluentBuilder

Constructs a fluent builder for the UpdateProfile operation.

source§

impl Client

source

pub fn update_review_template(&self) -> UpdateReviewTemplateFluentBuilder

Constructs a fluent builder for the UpdateReviewTemplate operation.

source§

impl Client

source

pub fn update_review_template_answer( &self, ) -> UpdateReviewTemplateAnswerFluentBuilder

Constructs a fluent builder for the UpdateReviewTemplateAnswer operation.

source§

impl Client

source

pub fn update_review_template_lens_review( &self, ) -> UpdateReviewTemplateLensReviewFluentBuilder

Constructs a fluent builder for the UpdateReviewTemplateLensReview operation.

source§

impl Client

source

pub fn update_share_invitation(&self) -> UpdateShareInvitationFluentBuilder

Constructs a fluent builder for the UpdateShareInvitation operation.

source§

impl Client

source

pub fn update_workload(&self) -> UpdateWorkloadFluentBuilder

Constructs a fluent builder for the UpdateWorkload operation.

source§

impl Client

source

pub fn update_workload_share(&self) -> UpdateWorkloadShareFluentBuilder

Constructs a fluent builder for the UpdateWorkloadShare operation.

source§

impl Client

source

pub fn upgrade_lens_review(&self) -> UpgradeLensReviewFluentBuilder

Constructs a fluent builder for the UpgradeLensReview operation.

  • The fluent builder is configurable:
    • workload_id(impl Into<String>) / set_workload_id(Option<String>):
      required: true

      The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.


    • lens_alias(impl Into<String>) / set_lens_alias(Option<String>):
      required: true

      The alias of the lens.

      For Amazon Web Services official lenses, this is either the lens alias, such as serverless, or the lens ARN, such as arn:aws:wellarchitected:us-east-1::lens/serverless. Note that some operations (such as ExportLens and CreateLensShare) are not permitted on Amazon Web Services official lenses.

      For custom lenses, this is the lens ARN, such as arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef.

      Each lens is identified by its LensSummary$LensAlias.


    • milestone_name(impl Into<String>) / set_milestone_name(Option<String>):
      required: true

      The name of the milestone in a workload.

      Milestone names must be unique within a workload.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: false

      A unique case-sensitive string used to ensure that this request is idempotent (executes only once).

      You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.

      This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.


  • On success, responds with UpgradeLensReviewOutput
  • On failure, responds with SdkError<UpgradeLensReviewError>
source§

impl Client

source

pub fn upgrade_profile_version(&self) -> UpgradeProfileVersionFluentBuilder

Constructs a fluent builder for the UpgradeProfileVersion operation.

source§

impl Client

source

pub fn upgrade_review_template_lens_review( &self, ) -> UpgradeReviewTemplateLensReviewFluentBuilder

Constructs a fluent builder for the UpgradeReviewTemplateLensReview operation.

  • The fluent builder is configurable:
    • template_arn(impl Into<String>) / set_template_arn(Option<String>):
      required: true

      The ARN of the review template.


    • lens_alias(impl Into<String>) / set_lens_alias(Option<String>):
      required: true

      The alias of the lens.

      For Amazon Web Services official lenses, this is either the lens alias, such as serverless, or the lens ARN, such as arn:aws:wellarchitected:us-east-1::lens/serverless. Note that some operations (such as ExportLens and CreateLensShare) are not permitted on Amazon Web Services official lenses.

      For custom lenses, this is the lens ARN, such as arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef.

      Each lens is identified by its LensSummary$LensAlias.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: false

      A unique case-sensitive string used to ensure that this request is idempotent (executes only once).

      You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.

      This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.


  • On success, responds with UpgradeReviewTemplateLensReviewOutput
  • On failure, responds with SdkError<UpgradeReviewTemplateLensReviewError>
source§

impl Client

source

pub fn from_conf(conf: Config) -> Self

Creates a new client from the service Config.

§Panics

This method will panic in the following cases:

  • Retries or timeouts are enabled without a sleep_impl configured.
  • Identity caching is enabled without a sleep_impl and time_source configured.
  • No behavior_version is provided.

The panic message for each of these will have instructions on how to resolve them.

source

pub fn config(&self) -> &Config

Returns the client’s configuration.

source§

impl Client

source

pub fn new(sdk_config: &SdkConfig) -> Self

Creates a new client from an SDK Config.

§Panics
  • This method will panic if the sdk_config is missing an async sleep implementation. If you experience this panic, set the sleep_impl on the Config passed into this function to fix it.
  • This method will panic if the sdk_config is missing an HTTP connector. If you experience this panic, set the http_connector on the Config passed into this function to fix it.
  • This method will panic if no BehaviorVersion is provided. If you experience this panic, set behavior_version on the Config or enable the behavior-version-latest Cargo feature.

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Client

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Paint for T
where T: ?Sized,

source§

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 primary(&self) -> Painted<&T>

Returns self with the fg() set to Color::Primary.

§Example
println!("{}", value.primary());
source§

fn fixed(&self, color: u8) -> Painted<&T>

Returns self with the fg() set to Color::Fixed.

§Example
println!("{}", value.fixed(color));
source§

fn rgb(&self, r: u8, g: u8, b: u8) -> Painted<&T>

Returns self with the fg() set to Color::Rgb.

§Example
println!("{}", value.rgb(r, g, b));
source§

fn black(&self) -> Painted<&T>

Returns self with the fg() set to Color::Black.

§Example
println!("{}", value.black());
source§

fn red(&self) -> Painted<&T>

Returns self with the fg() set to Color::Red.

§Example
println!("{}", value.red());
source§

fn green(&self) -> Painted<&T>

Returns self with the fg() set to Color::Green.

§Example
println!("{}", value.green());
source§

fn yellow(&self) -> Painted<&T>

Returns self with the fg() set to Color::Yellow.

§Example
println!("{}", value.yellow());
source§

fn blue(&self) -> Painted<&T>

Returns self with the fg() set to Color::Blue.

§Example
println!("{}", value.blue());
source§

fn magenta(&self) -> Painted<&T>

Returns self with the fg() set to Color::Magenta.

§Example
println!("{}", value.magenta());
source§

fn cyan(&self) -> Painted<&T>

Returns self with the fg() set to Color::Cyan.

§Example
println!("{}", value.cyan());
source§

fn white(&self) -> Painted<&T>

Returns self with the fg() set to Color::White.

§Example
println!("{}", value.white());
source§

fn bright_black(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightBlack.

§Example
println!("{}", value.bright_black());
source§

fn bright_red(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightRed.

§Example
println!("{}", value.bright_red());
source§

fn bright_green(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightGreen.

§Example
println!("{}", value.bright_green());
source§

fn bright_yellow(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightYellow.

§Example
println!("{}", value.bright_yellow());
source§

fn bright_blue(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightBlue.

§Example
println!("{}", value.bright_blue());
source§

fn bright_magenta(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightMagenta.

§Example
println!("{}", value.bright_magenta());
source§

fn bright_cyan(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightCyan.

§Example
println!("{}", value.bright_cyan());
source§

fn bright_white(&self) -> Painted<&T>

Returns self with the fg() set to Color::BrightWhite.

§Example
println!("{}", value.bright_white());
source§

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>

Returns self with the bg() set to Color::Primary.

§Example
println!("{}", value.on_primary());
source§

fn on_fixed(&self, color: u8) -> Painted<&T>

Returns self with the bg() set to Color::Fixed.

§Example
println!("{}", value.on_fixed(color));
source§

fn on_rgb(&self, r: u8, g: u8, b: u8) -> Painted<&T>

Returns self with the bg() set to Color::Rgb.

§Example
println!("{}", value.on_rgb(r, g, b));
source§

fn on_black(&self) -> Painted<&T>

Returns self with the bg() set to Color::Black.

§Example
println!("{}", value.on_black());
source§

fn on_red(&self) -> Painted<&T>

Returns self with the bg() set to Color::Red.

§Example
println!("{}", value.on_red());
source§

fn on_green(&self) -> Painted<&T>

Returns self with the bg() set to Color::Green.

§Example
println!("{}", value.on_green());
source§

fn on_yellow(&self) -> Painted<&T>

Returns self with the bg() set to Color::Yellow.

§Example
println!("{}", value.on_yellow());
source§

fn on_blue(&self) -> Painted<&T>

Returns self with the bg() set to Color::Blue.

§Example
println!("{}", value.on_blue());
source§

fn on_magenta(&self) -> Painted<&T>

Returns self with the bg() set to Color::Magenta.

§Example
println!("{}", value.on_magenta());
source§

fn on_cyan(&self) -> Painted<&T>

Returns self with the bg() set to Color::Cyan.

§Example
println!("{}", value.on_cyan());
source§

fn on_white(&self) -> Painted<&T>

Returns self with the bg() set to Color::White.

§Example
println!("{}", value.on_white());
source§

fn on_bright_black(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightBlack.

§Example
println!("{}", value.on_bright_black());
source§

fn on_bright_red(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightRed.

§Example
println!("{}", value.on_bright_red());
source§

fn on_bright_green(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightGreen.

§Example
println!("{}", value.on_bright_green());
source§

fn on_bright_yellow(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightYellow.

§Example
println!("{}", value.on_bright_yellow());
source§

fn on_bright_blue(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightBlue.

§Example
println!("{}", value.on_bright_blue());
source§

fn on_bright_magenta(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightMagenta.

§Example
println!("{}", value.on_bright_magenta());
source§

fn on_bright_cyan(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightCyan.

§Example
println!("{}", value.on_bright_cyan());
source§

fn on_bright_white(&self) -> Painted<&T>

Returns self with the bg() set to Color::BrightWhite.

§Example
println!("{}", value.on_bright_white());
source§

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 bold(&self) -> Painted<&T>

Returns self with the attr() set to Attribute::Bold.

§Example
println!("{}", value.bold());
source§

fn dim(&self) -> Painted<&T>

Returns self with the attr() set to Attribute::Dim.

§Example
println!("{}", value.dim());
source§

fn italic(&self) -> Painted<&T>

Returns self with the attr() set to Attribute::Italic.

§Example
println!("{}", value.italic());
source§

fn underline(&self) -> Painted<&T>

Returns self with the attr() set to Attribute::Underline.

§Example
println!("{}", value.underline());

Returns self with the attr() set to Attribute::Blink.

§Example
println!("{}", value.blink());

Returns self with the attr() set to Attribute::RapidBlink.

§Example
println!("{}", value.rapid_blink());
source§

fn invert(&self) -> Painted<&T>

Returns self with the attr() set to Attribute::Invert.

§Example
println!("{}", value.invert());
source§

fn conceal(&self) -> Painted<&T>

Returns self with the attr() set to Attribute::Conceal.

§Example
println!("{}", value.conceal());
source§

fn strike(&self) -> Painted<&T>

Returns self with the attr() set to Attribute::Strike.

§Example
println!("{}", value.strike());
source§

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 mask(&self) -> Painted<&T>

Returns self with the quirk() set to Quirk::Mask.

§Example
println!("{}", value.mask());
source§

fn wrap(&self) -> Painted<&T>

Returns self with the quirk() set to Quirk::Wrap.

§Example
println!("{}", value.wrap());
source§

fn linger(&self) -> Painted<&T>

Returns self with the quirk() set to Quirk::Linger.

§Example
println!("{}", value.linger());
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.

Returns self with the quirk() set to Quirk::Clear.

§Example
println!("{}", value.clear());
source§

fn resetting(&self) -> Painted<&T>

Returns self with the quirk() set to Quirk::Resetting.

§Example
println!("{}", value.resetting());
source§

fn bright(&self) -> Painted<&T>

Returns self with the quirk() set to Quirk::Bright.

§Example
println!("{}", value.bright());
source§

fn on_bright(&self) -> Painted<&T>

Returns self with the quirk() set to Quirk::OnBright.

§Example
println!("{}", value.on_bright());
source§

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);
source§

fn new(self) -> Painted<Self>
where Self: Sized,

Create a new Painted with a default Style. Read more
source§

fn paint<S>(&self, style: S) -> Painted<&Self>
where S: Into<Style>,

Apply a style wholesale to self. Any previous style is replaced. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more