#[non_exhaustive]pub struct OnEncryptOutputBuilder { /* private fields */ }
Expand description
A builder for OnEncryptOutput
.
Implementations§
Source§impl OnEncryptOutputBuilder
impl OnEncryptOutputBuilder
pub fn materials(self, input: impl Into<EncryptionMaterials>) -> Self
pub fn set_materials(self, input: Option<EncryptionMaterials>) -> Self
pub fn get_materials(&self) -> &Option<EncryptionMaterials>
Sourcepub fn build(self) -> Result<OnEncryptOutput, BuildError>
pub fn build(self) -> Result<OnEncryptOutput, BuildError>
Consumes the builder and constructs a OnEncryptOutput
.
Trait Implementations§
Source§impl Clone for OnEncryptOutputBuilder
impl Clone for OnEncryptOutputBuilder
Source§fn clone(&self) -> OnEncryptOutputBuilder
fn clone(&self) -> OnEncryptOutputBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OnEncryptOutputBuilder
impl Debug for OnEncryptOutputBuilder
Source§impl Default for OnEncryptOutputBuilder
impl Default for OnEncryptOutputBuilder
Source§fn default() -> OnEncryptOutputBuilder
fn default() -> OnEncryptOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for OnEncryptOutputBuilder
impl PartialEq for OnEncryptOutputBuilder
impl StructuralPartialEq for OnEncryptOutputBuilder
Auto Trait Implementations§
impl Freeze for OnEncryptOutputBuilder
impl RefUnwindSafe for OnEncryptOutputBuilder
impl Send for OnEncryptOutputBuilder
impl Sync for OnEncryptOutputBuilder
impl Unpin for OnEncryptOutputBuilder
impl UnwindSafe for OnEncryptOutputBuilder
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
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>
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.