pub struct Endpoint { /* private fields */ }
Expand description
Smithy Endpoint Type
Generally, this type should not be used from user code
Implementations§
Source§impl Endpoint
impl Endpoint
Sourcepub fn headers(
&self,
) -> impl Iterator<Item = (&str, impl Iterator<Item = &str>)>
pub fn headers( &self, ) -> impl Iterator<Item = (&str, impl Iterator<Item = &str>)>
Returns the headers associated with this endpoint
Sourcepub fn properties(&self) -> &HashMap<Cow<'static, str>, Document>
pub fn properties(&self) -> &HashMap<Cow<'static, str>, Document>
Returns the properties associated with this endpoint
Sourcepub fn into_builder(self) -> Builder
pub fn into_builder(self) -> Builder
Converts this endpoint back into a Builder
Trait Implementations§
Source§impl Storable for Endpoint
impl Storable for Endpoint
Source§type Storer = StoreReplace<Endpoint>
type Storer = StoreReplace<Endpoint>
Specify how an item is stored in the config bag, e.g.
StoreReplace
and StoreAppend
impl StructuralPartialEq for Endpoint
Auto Trait Implementations§
impl Freeze for Endpoint
impl RefUnwindSafe for Endpoint
impl Send for Endpoint
impl Sync for Endpoint
impl Unpin for Endpoint
impl UnwindSafe for Endpoint
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
Creates a shared type from an unshared type.