Struct aws_config::endpoint::EndpointPrefix
source · pub struct EndpointPrefix(_);
Expand description
A special type that adds support for services that have special URL-prefixing rules.
Implementations§
source§impl EndpointPrefix
impl EndpointPrefix
sourcepub fn new(prefix: impl Into<String>) -> Result<EndpointPrefix, BuildError>
pub fn new(prefix: impl Into<String>) -> Result<EndpointPrefix, BuildError>
Create a new endpoint prefix from an impl Into<String>
. If the prefix argument is invalid,
a BuildError
will be returned.
Trait Implementations§
source§impl Clone for EndpointPrefix
impl Clone for EndpointPrefix
source§fn clone(&self) -> EndpointPrefix
fn clone(&self) -> EndpointPrefix
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 Debug for EndpointPrefix
impl Debug for EndpointPrefix
source§impl PartialEq<EndpointPrefix> for EndpointPrefix
impl PartialEq<EndpointPrefix> for EndpointPrefix
source§fn eq(&self, other: &EndpointPrefix) -> bool
fn eq(&self, other: &EndpointPrefix) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for EndpointPrefix
impl StructuralEq for EndpointPrefix
impl StructuralPartialEq for EndpointPrefix
Auto Trait Implementations§
impl RefUnwindSafe for EndpointPrefix
impl Send for EndpointPrefix
impl Sync for EndpointPrefix
impl Unpin for EndpointPrefix
impl UnwindSafe for EndpointPrefix
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.