#[repr(C)]pub struct aws_uri_builder_options {
pub scheme: aws_byte_cursor,
pub path: aws_byte_cursor,
pub host_name: aws_byte_cursor,
pub port: u16,
pub query_params: *mut aws_array_list,
pub query_string: aws_byte_cursor,
}
Expand description
Arguments for building a URI instance. All members must be initialized before passing them to aws_uri_init().
query_string and query_params are exclusive to each other. If you set query_string, do not prepend it with ‘?’
Fields
scheme: aws_byte_cursor
path: aws_byte_cursor
host_name: aws_byte_cursor
port: u16
query_params: *mut aws_array_list
query_string: aws_byte_cursor
Trait Implementations
sourceimpl Clone for aws_uri_builder_options
impl Clone for aws_uri_builder_options
sourcefn clone(&self) -> aws_uri_builder_options
fn clone(&self) -> aws_uri_builder_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_uri_builder_options
impl Debug for aws_uri_builder_options
sourceimpl Default for aws_uri_builder_options
impl Default for aws_uri_builder_options
sourceimpl PartialEq<aws_uri_builder_options> for aws_uri_builder_options
impl PartialEq<aws_uri_builder_options> for aws_uri_builder_options
sourcefn eq(&self, other: &aws_uri_builder_options) -> bool
fn eq(&self, other: &aws_uri_builder_options) -> bool
impl Copy for aws_uri_builder_options
impl Eq for aws_uri_builder_options
impl StructuralEq for aws_uri_builder_options
impl StructuralPartialEq for aws_uri_builder_options
Auto Trait Implementations
impl RefUnwindSafe for aws_uri_builder_options
impl !Send for aws_uri_builder_options
impl !Sync for aws_uri_builder_options
impl Unpin for aws_uri_builder_options
impl UnwindSafe for aws_uri_builder_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