#[repr(C)]pub struct aws_client_bootstrap_options {
pub event_loop_group: *mut aws_event_loop_group,
pub host_resolver: *mut aws_host_resolver,
pub host_resolution_config: *mut aws_host_resolution_config,
pub on_shutdown_complete: aws_client_bootstrap_shutdown_complete_fn,
pub user_data: *mut c_void,
}
Expand description
aws_client_bootstrap creation options.
Fields
event_loop_group: *mut aws_event_loop_group
host_resolver: *mut aws_host_resolver
host_resolution_config: *mut aws_host_resolution_config
on_shutdown_complete: aws_client_bootstrap_shutdown_complete_fn
user_data: *mut c_void
Trait Implementations
sourceimpl Clone for aws_client_bootstrap_options
impl Clone for aws_client_bootstrap_options
sourcefn clone(&self) -> aws_client_bootstrap_options
fn clone(&self) -> aws_client_bootstrap_options
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_client_bootstrap_options
impl Debug for aws_client_bootstrap_options
sourceimpl PartialEq<aws_client_bootstrap_options> for aws_client_bootstrap_options
impl PartialEq<aws_client_bootstrap_options> for aws_client_bootstrap_options
sourcefn eq(&self, other: &aws_client_bootstrap_options) -> bool
fn eq(&self, other: &aws_client_bootstrap_options) -> bool
impl Copy for aws_client_bootstrap_options
impl Eq for aws_client_bootstrap_options
impl StructuralEq for aws_client_bootstrap_options
impl StructuralPartialEq for aws_client_bootstrap_options
Auto Trait Implementations
impl RefUnwindSafe for aws_client_bootstrap_options
impl !Send for aws_client_bootstrap_options
impl !Sync for aws_client_bootstrap_options
impl Unpin for aws_client_bootstrap_options
impl UnwindSafe for aws_client_bootstrap_options
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more