Struct aws_smithy_runtime_api::client::identity::Builder
source · pub struct Builder { /* private fields */ }
Available on crate feature
client
only.Expand description
Builder for Identity
Implementations§
source§impl Builder
impl Builder
sourcepub fn data<T: Any + Debug + Send + Sync + 'static>(self, data: T) -> Self
pub fn data<T: Any + Debug + Send + Sync + 'static>(self, data: T) -> Self
Set raw identity data for the builder.
sourcepub fn set_data<T: Any + Debug + Send + Sync + 'static>(&mut self, data: T)
pub fn set_data<T: Any + Debug + Send + Sync + 'static>(&mut self, data: T)
Set raw identity data for the builder.
sourcepub fn expiration(self, expiration: SystemTime) -> Self
pub fn expiration(self, expiration: SystemTime) -> Self
Set expiration for the builder.
sourcepub fn set_expiration(&mut self, expiration: Option<SystemTime>)
pub fn set_expiration(&mut self, expiration: Option<SystemTime>)
Set expiration for the builder.
sourcepub fn property<T: Any + Debug + Send + Sync + 'static>(self, prop: T) -> Self
pub fn property<T: Any + Debug + Send + Sync + 'static>(self, prop: T) -> Self
Set arbitrary property for the builder.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Builder
impl !RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl !UnwindSafe for Builder
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
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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 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>
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 moreCreates a shared type from an unshared type.