pub struct Client { /* private fields */ }
Expand description
Client for AWS Account
Client for invoking operations on AWS Account. Each operation on AWS Account 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_account::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_account::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 AcceptPrimaryEmailUpdate
operation has
a Client::accept_primary_email_update
, 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.accept_primary_email_update()
.account_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
impl Client
Sourcepub fn accept_primary_email_update(
&self,
) -> AcceptPrimaryEmailUpdateFluentBuilder
pub fn accept_primary_email_update( &self, ) -> AcceptPrimaryEmailUpdateFluentBuilder
Constructs a fluent builder for the AcceptPrimaryEmailUpdate
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: trueSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
This operation can only be called from the management account or the delegated administrator account of an organization for a member account.
The management account can’t specify its own
AccountId
.primary_email(impl Into<String>)
/set_primary_email(Option<String>)
:
required: trueThe new primary email address for use with the specified account. This must match the
PrimaryEmail
from theStartPrimaryEmailUpdate
API call.otp(impl Into<String>)
/set_otp(Option<String>)
:
required: trueThe OTP code sent to the
PrimaryEmail
specified on theStartPrimaryEmailUpdate
API call.
- On success, responds with
AcceptPrimaryEmailUpdateOutput
with field(s):status(Option<PrimaryEmailUpdateStatus>)
:Retrieves the status of the accepted primary email update request.
- On failure, responds with
SdkError<AcceptPrimaryEmailUpdateError>
Source§impl Client
impl Client
Sourcepub fn delete_alternate_contact(&self) -> DeleteAlternateContactFluentBuilder
pub fn delete_alternate_contact(&self) -> DeleteAlternateContactFluentBuilder
Constructs a fluent builder for the DeleteAlternateContact
operation.
- The fluent builder is configurable:
alternate_contact_type(AlternateContactType)
/set_alternate_contact_type(Option<AlternateContactType>)
:
required: trueSpecifies which of the alternate contacts to delete.
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation.
If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation.
To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
; it must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, then don’t specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
- On success, responds with
DeleteAlternateContactOutput
- On failure, responds with
SdkError<DeleteAlternateContactError>
Source§impl Client
impl Client
Sourcepub fn disable_region(&self) -> DisableRegionFluentBuilder
pub fn disable_region(&self) -> DisableRegionFluentBuilder
Constructs a fluent builder for the DisableRegion
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don’t specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
. It must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, don’t specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
region_name(impl Into<String>)
/set_region_name(Option<String>)
:
required: trueSpecifies the Region-code for a given Region name (for example,
af-south-1
). When you disable a Region, Amazon Web Services performs actions to deactivate that Region in your account, such as destroying IAM resources in the Region. This process takes a few minutes for most accounts, but this can take several hours. You cannot enable the Region until the disabling process is fully completed.
- On success, responds with
DisableRegionOutput
- On failure, responds with
SdkError<DisableRegionError>
Source§impl Client
impl Client
Sourcepub fn enable_region(&self) -> EnableRegionFluentBuilder
pub fn enable_region(&self) -> EnableRegionFluentBuilder
Constructs a fluent builder for the EnableRegion
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don’t specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
. It must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, don’t specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
region_name(impl Into<String>)
/set_region_name(Option<String>)
:
required: trueSpecifies the Region-code for a given Region name (for example,
af-south-1
). When you enable a Region, Amazon Web Services performs actions to prepare your account in that Region, such as distributing your IAM resources to the Region. This process takes a few minutes for most accounts, but it can take several hours. You cannot use the Region until this process is complete. Furthermore, you cannot disable the Region until the enabling process is fully completed.
- On success, responds with
EnableRegionOutput
- On failure, responds with
SdkError<EnableRegionError>
Source§impl Client
impl Client
Sourcepub fn get_account_information(&self) -> GetAccountInformationFluentBuilder
pub fn get_account_information(&self) -> GetAccountInformationFluentBuilder
Constructs a fluent builder for the GetAccountInformation
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation.
If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation.
To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
; it must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, then don’t specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
- On success, responds with
GetAccountInformationOutput
with field(s):account_id(Option<String>)
:Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
This operation can only be called from the management account or the delegated administrator account of an organization for a member account.
The management account can’t specify its own
AccountId
.account_name(Option<String>)
:The name of the account.
account_created_date(Option<DateTime>)
:The date and time the account was created.
- On failure, responds with
SdkError<GetAccountInformationError>
Source§impl Client
impl Client
Sourcepub fn get_alternate_contact(&self) -> GetAlternateContactFluentBuilder
pub fn get_alternate_contact(&self) -> GetAlternateContactFluentBuilder
Constructs a fluent builder for the GetAlternateContact
operation.
- The fluent builder is configurable:
alternate_contact_type(AlternateContactType)
/set_alternate_contact_type(Option<AlternateContactType>)
:
required: trueSpecifies which alternate contact you want to retrieve.
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation.
If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation.
To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
; it must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, then don’t specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
- On success, responds with
GetAlternateContactOutput
with field(s):alternate_contact(Option<AlternateContact>)
:A structure that contains the details for the specified alternate contact.
- On failure, responds with
SdkError<GetAlternateContactError>
Source§impl Client
impl Client
Sourcepub fn get_contact_information(&self) -> GetContactInformationFluentBuilder
pub fn get_contact_information(&self) -> GetContactInformationFluentBuilder
Constructs a fluent builder for the GetContactInformation
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don’t specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
. It must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, don’t specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
- On success, responds with
GetContactInformationOutput
with field(s):contact_information(Option<ContactInformation>)
:Contains the details of the primary contact information associated with an Amazon Web Services account.
- On failure, responds with
SdkError<GetContactInformationError>
Source§impl Client
impl Client
Sourcepub fn get_primary_email(&self) -> GetPrimaryEmailFluentBuilder
pub fn get_primary_email(&self) -> GetPrimaryEmailFluentBuilder
Constructs a fluent builder for the GetPrimaryEmail
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: trueSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
This operation can only be called from the management account or the delegated administrator account of an organization for a member account.
The management account can’t specify its own
AccountId
.
- On success, responds with
GetPrimaryEmailOutput
with field(s):primary_email(Option<String>)
:Retrieves the primary email address associated with the specified account.
- On failure, responds with
SdkError<GetPrimaryEmailError>
Source§impl Client
impl Client
Sourcepub fn get_region_opt_status(&self) -> GetRegionOptStatusFluentBuilder
pub fn get_region_opt_status(&self) -> GetRegionOptStatusFluentBuilder
Constructs a fluent builder for the GetRegionOptStatus
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don’t specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
. It must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, don’t specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
region_name(impl Into<String>)
/set_region_name(Option<String>)
:
required: trueSpecifies the Region-code for a given Region name (for example,
af-south-1
). This function will return the status of whatever Region you pass into this parameter.
- On success, responds with
GetRegionOptStatusOutput
with field(s):region_name(Option<String>)
:The Region code that was passed in.
region_opt_status(Option<RegionOptStatus>)
:One of the potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).
- On failure, responds with
SdkError<GetRegionOptStatusError>
Source§impl Client
impl Client
Sourcepub fn list_regions(&self) -> ListRegionsFluentBuilder
pub fn list_regions(&self) -> ListRegionsFluentBuilder
Constructs a fluent builder for the ListRegions
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don’t specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
. It must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, don’t specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
max_results(i32)
/set_max_results(Option<i32>)
:
required: falseThe total number of items to return in the command’s output. If the total number of items available is more than the value specified, a
NextToken
is provided in the command’s output. To resume pagination, provide theNextToken
value in thestarting-token
argument of a subsequent command. Do not use theNextToken
response element directly outside of the Amazon Web Services CLI. For usage examples, see Pagination in the Amazon Web Services Command Line Interface User Guide.next_token(impl Into<String>)
/set_next_token(Option<String>)
:
required: falseA token used to specify where to start paginating. This is the
NextToken
from a previously truncated response. For usage examples, see Pagination in the Amazon Web Services Command Line Interface User Guide.region_opt_status_contains(RegionOptStatus)
/set_region_opt_status_contains(Option<Vec::<RegionOptStatus>>)
:
required: falseA list of Region statuses (Enabling, Enabled, Disabling, Disabled, Enabled_by_default) to use to filter the list of Regions for a given account. For example, passing in a value of ENABLING will only return a list of Regions with a Region status of ENABLING.
- On success, responds with
ListRegionsOutput
with field(s):next_token(Option<String>)
:If there is more data to be returned, this will be populated. It should be passed into the
next-token
request parameter oflist-regions
.regions(Option<Vec::<Region>>)
:This is a list of Regions for a given account, or if the filtered parameter was used, a list of Regions that match the filter criteria set in the
filter
parameter.
- On failure, responds with
SdkError<ListRegionsError>
Source§impl Client
impl Client
Sourcepub fn put_account_name(&self) -> PutAccountNameFluentBuilder
pub fn put_account_name(&self) -> PutAccountNameFluentBuilder
Constructs a fluent builder for the PutAccountName
operation.
- The fluent builder is configurable:
account_name(impl Into<String>)
/set_account_name(Option<String>)
:
required: trueThe name of the account.
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation.
If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation.
To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
; it must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, then don’t specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
- On success, responds with
PutAccountNameOutput
- On failure, responds with
SdkError<PutAccountNameError>
Source§impl Client
impl Client
Sourcepub fn put_alternate_contact(&self) -> PutAlternateContactFluentBuilder
pub fn put_alternate_contact(&self) -> PutAlternateContactFluentBuilder
Constructs a fluent builder for the PutAlternateContact
operation.
- The fluent builder is configurable:
name(impl Into<String>)
/set_name(Option<String>)
:
required: trueSpecifies a name for the alternate contact.
title(impl Into<String>)
/set_title(Option<String>)
:
required: trueSpecifies a title for the alternate contact.
email_address(impl Into<String>)
/set_email_address(Option<String>)
:
required: trueSpecifies an email address for the alternate contact.
phone_number(impl Into<String>)
/set_phone_number(Option<String>)
:
required: trueSpecifies a phone number for the alternate contact.
alternate_contact_type(AlternateContactType)
/set_alternate_contact_type(Option<AlternateContactType>)
:
required: trueSpecifies which alternate contact you want to create or update.
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation.
If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation.
To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
; it must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, then don’t specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
- On success, responds with
PutAlternateContactOutput
- On failure, responds with
SdkError<PutAlternateContactError>
Source§impl Client
impl Client
Sourcepub fn put_contact_information(&self) -> PutContactInformationFluentBuilder
pub fn put_contact_information(&self) -> PutContactInformationFluentBuilder
Constructs a fluent builder for the PutContactInformation
operation.
- The fluent builder is configurable:
contact_information(ContactInformation)
/set_contact_information(Option<ContactInformation>)
:
required: trueContains the details of the primary contact information associated with an Amazon Web Services account.
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: falseSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don’t specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can’t specify its own
AccountId
. It must call the operation in standalone context by not including theAccountId
parameter.To call this operation on an account that is not a member of an organization, don’t specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
- On success, responds with
PutContactInformationOutput
- On failure, responds with
SdkError<PutContactInformationError>
Source§impl Client
impl Client
Sourcepub fn start_primary_email_update(&self) -> StartPrimaryEmailUpdateFluentBuilder
pub fn start_primary_email_update(&self) -> StartPrimaryEmailUpdateFluentBuilder
Constructs a fluent builder for the StartPrimaryEmailUpdate
operation.
- The fluent builder is configurable:
account_id(impl Into<String>)
/set_account_id(Option<String>)
:
required: trueSpecifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization’s management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
This operation can only be called from the management account or the delegated administrator account of an organization for a member account.
The management account can’t specify its own
AccountId
.primary_email(impl Into<String>)
/set_primary_email(Option<String>)
:
required: trueThe new primary email address (also known as the root user email address) to use in the specified account.
- On success, responds with
StartPrimaryEmailUpdateOutput
with field(s):status(Option<PrimaryEmailUpdateStatus>)
:The status of the primary email update request.
- On failure, responds with
SdkError<StartPrimaryEmailUpdateError>
Source§impl Client
impl Client
Sourcepub fn from_conf(conf: Config) -> Self
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
andtime_source
configured. - No
behavior_version
is provided.
The panic message for each of these will have instructions on how to resolve them.
Source§impl Client
impl Client
Sourcepub fn new(sdk_config: &SdkConfig) -> Self
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 thesleep_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 thehttp_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, setbehavior_version
on the Config or enable thebehavior-version-latest
Cargo feature.
Trait Implementations§
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> 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);