#[repr(C)]pub struct aws_client_bootstrap {
pub allocator: *mut aws_allocator,
pub event_loop_group: *mut aws_event_loop_group,
pub host_resolver: *mut aws_host_resolver,
pub host_resolver_config: aws_host_resolution_config,
pub on_protocol_negotiated: aws_channel_on_protocol_negotiated_fn,
pub ref_count: aws_ref_count,
pub on_shutdown_complete: aws_client_bootstrap_shutdown_complete_fn,
pub user_data: *mut c_void,
}
Expand description
aws_client_bootstrap handles creation and setup of channels that communicate via socket with a specific endpoint.
Fields
allocator: *mut aws_allocator
event_loop_group: *mut aws_event_loop_group
host_resolver: *mut aws_host_resolver
host_resolver_config: aws_host_resolution_config
on_protocol_negotiated: aws_channel_on_protocol_negotiated_fn
ref_count: aws_ref_count
on_shutdown_complete: aws_client_bootstrap_shutdown_complete_fn
user_data: *mut c_void
Trait Implementations
sourceimpl Clone for aws_client_bootstrap
impl Clone for aws_client_bootstrap
sourcefn clone(&self) -> aws_client_bootstrap
fn clone(&self) -> aws_client_bootstrap
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
impl Debug for aws_client_bootstrap
sourceimpl Default for aws_client_bootstrap
impl Default for aws_client_bootstrap
sourceimpl PartialEq<aws_client_bootstrap> for aws_client_bootstrap
impl PartialEq<aws_client_bootstrap> for aws_client_bootstrap
sourcefn eq(&self, other: &aws_client_bootstrap) -> bool
fn eq(&self, other: &aws_client_bootstrap) -> bool
impl Copy for aws_client_bootstrap
impl Eq for aws_client_bootstrap
impl StructuralEq for aws_client_bootstrap
impl StructuralPartialEq for aws_client_bootstrap
Auto Trait Implementations
impl RefUnwindSafe for aws_client_bootstrap
impl !Send for aws_client_bootstrap
impl !Sync for aws_client_bootstrap
impl Unpin for aws_client_bootstrap
impl UnwindSafe for aws_client_bootstrap
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