pub struct ClientConfig<'a> {
pub endpoint: &'a str,
pub credentials: StaticCredentials<'a>,
pub region: &'a str,
pub virtual_hosted: bool,
}Fields§
§endpoint: &'a str§credentials: StaticCredentials<'a>§region: &'a str§virtual_hosted: boolTrait Implementations§
Source§impl<'a> Clone for ClientConfig<'a>
impl<'a> Clone for ClientConfig<'a>
Source§fn clone(&self) -> ClientConfig<'a>
fn clone(&self) -> ClientConfig<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for ClientConfig<'a>
impl<'a> RefUnwindSafe for ClientConfig<'a>
impl<'a> Send for ClientConfig<'a>
impl<'a> Sync for ClientConfig<'a>
impl<'a> Unpin for ClientConfig<'a>
impl<'a> UnsafeUnpin for ClientConfig<'a>
impl<'a> UnwindSafe for ClientConfig<'a>
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