#[repr(C)]pub struct aws_host_address {
pub allocator: *mut aws_allocator,
pub host: *const aws_string,
pub address: *const aws_string,
pub record_type: aws_address_record_type,
pub expiry: u64,
pub use_count: usize,
pub connection_failure_count: usize,
pub weight: u8,
}
Fields
allocator: *mut aws_allocator
host: *const aws_string
address: *const aws_string
record_type: aws_address_record_type
expiry: u64
use_count: usize
connection_failure_count: usize
weight: u8
Trait Implementations
sourceimpl Clone for aws_host_address
impl Clone for aws_host_address
sourcefn clone(&self) -> aws_host_address
fn clone(&self) -> aws_host_address
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_host_address
impl Debug for aws_host_address
sourceimpl Default for aws_host_address
impl Default for aws_host_address
sourceimpl PartialEq<aws_host_address> for aws_host_address
impl PartialEq<aws_host_address> for aws_host_address
sourcefn eq(&self, other: &aws_host_address) -> bool
fn eq(&self, other: &aws_host_address) -> bool
impl Copy for aws_host_address
impl Eq for aws_host_address
impl StructuralEq for aws_host_address
impl StructuralPartialEq for aws_host_address
Auto Trait Implementations
impl RefUnwindSafe for aws_host_address
impl !Send for aws_host_address
impl !Sync for aws_host_address
impl Unpin for aws_host_address
impl UnwindSafe for aws_host_address
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