Struct aws_sdk_xray::types::builders::InsightImpactGraphEdgeBuilder
source · #[non_exhaustive]pub struct InsightImpactGraphEdgeBuilder { /* private fields */ }
Expand description
A builder for InsightImpactGraphEdge
.
Implementations§
source§impl InsightImpactGraphEdgeBuilder
impl InsightImpactGraphEdgeBuilder
sourcepub fn reference_id(self, input: i32) -> Self
pub fn reference_id(self, input: i32) -> Self
Identifier of the edge. Unique within a service map.
sourcepub fn set_reference_id(self, input: Option<i32>) -> Self
pub fn set_reference_id(self, input: Option<i32>) -> Self
Identifier of the edge. Unique within a service map.
sourcepub fn get_reference_id(&self) -> &Option<i32>
pub fn get_reference_id(&self) -> &Option<i32>
Identifier of the edge. Unique within a service map.
sourcepub fn build(self) -> InsightImpactGraphEdge
pub fn build(self) -> InsightImpactGraphEdge
Consumes the builder and constructs a InsightImpactGraphEdge
.
Trait Implementations§
source§impl Clone for InsightImpactGraphEdgeBuilder
impl Clone for InsightImpactGraphEdgeBuilder
source§fn clone(&self) -> InsightImpactGraphEdgeBuilder
fn clone(&self) -> InsightImpactGraphEdgeBuilder
Returns a copy 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 InsightImpactGraphEdgeBuilder
impl Default for InsightImpactGraphEdgeBuilder
source§fn default() -> InsightImpactGraphEdgeBuilder
fn default() -> InsightImpactGraphEdgeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InsightImpactGraphEdgeBuilder
impl PartialEq for InsightImpactGraphEdgeBuilder
source§fn eq(&self, other: &InsightImpactGraphEdgeBuilder) -> bool
fn eq(&self, other: &InsightImpactGraphEdgeBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InsightImpactGraphEdgeBuilder
Auto Trait Implementations§
impl Freeze for InsightImpactGraphEdgeBuilder
impl RefUnwindSafe for InsightImpactGraphEdgeBuilder
impl Send for InsightImpactGraphEdgeBuilder
impl Sync for InsightImpactGraphEdgeBuilder
impl Unpin for InsightImpactGraphEdgeBuilder
impl UnwindSafe for InsightImpactGraphEdgeBuilder
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> 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.