#[non_exhaustive]pub struct ResolveAttributesOutputBuilder { /* private fields */ }
Expand description
A builder for ResolveAttributesOutput
.
Implementations§
Source§impl ResolveAttributesOutputBuilder
impl ResolveAttributesOutputBuilder
Sourcepub fn compound_beacons(self, input: impl Into<HashMap<String, String>>) -> Self
pub fn compound_beacons(self, input: impl Into<HashMap<String, String>>) -> Self
Full plaintext of all calculable compound beacons.
Sourcepub fn set_compound_beacons(
self,
input: Option<HashMap<String, String>>,
) -> Self
pub fn set_compound_beacons( self, input: Option<HashMap<String, String>>, ) -> Self
Full plaintext of all calculable compound beacons.
Sourcepub fn get_compound_beacons(&self) -> &Option<HashMap<String, String>>
pub fn get_compound_beacons(&self) -> &Option<HashMap<String, String>>
Full plaintext of all calculable compound beacons.
Sourcepub fn virtual_fields(self, input: impl Into<HashMap<String, String>>) -> Self
pub fn virtual_fields(self, input: impl Into<HashMap<String, String>>) -> Self
Full plaintext of all calculable virtual fields.
Sourcepub fn set_virtual_fields(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_virtual_fields(self, input: Option<HashMap<String, String>>) -> Self
Full plaintext of all calculable virtual fields.
Sourcepub fn get_virtual_fields(&self) -> &Option<HashMap<String, String>>
pub fn get_virtual_fields(&self) -> &Option<HashMap<String, String>>
Full plaintext of all calculable virtual fields.
Sourcepub fn build(self) -> Result<ResolveAttributesOutput, BuildError>
pub fn build(self) -> Result<ResolveAttributesOutput, BuildError>
Consumes the builder and constructs a ResolveAttributesOutput
.
Trait Implementations§
Source§impl Clone for ResolveAttributesOutputBuilder
impl Clone for ResolveAttributesOutputBuilder
Source§fn clone(&self) -> ResolveAttributesOutputBuilder
fn clone(&self) -> ResolveAttributesOutputBuilder
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 Default for ResolveAttributesOutputBuilder
impl Default for ResolveAttributesOutputBuilder
Source§fn default() -> ResolveAttributesOutputBuilder
fn default() -> ResolveAttributesOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolveAttributesOutputBuilder
impl PartialEq for ResolveAttributesOutputBuilder
Source§fn eq(&self, other: &ResolveAttributesOutputBuilder) -> bool
fn eq(&self, other: &ResolveAttributesOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResolveAttributesOutputBuilder
Auto Trait Implementations§
impl Freeze for ResolveAttributesOutputBuilder
impl RefUnwindSafe for ResolveAttributesOutputBuilder
impl Send for ResolveAttributesOutputBuilder
impl Sync for ResolveAttributesOutputBuilder
impl Unpin for ResolveAttributesOutputBuilder
impl UnwindSafe for ResolveAttributesOutputBuilder
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.