#[repr(C)]pub struct aws_uri_param {
pub key: aws_byte_cursor,
pub value: aws_byte_cursor,
}
Expand description
key/value pairs for a query string. If the query fragment was not in format key=value, the fragment value will be stored in key
Fields
key: aws_byte_cursor
value: aws_byte_cursor
Trait Implementations
sourceimpl Clone for aws_uri_param
impl Clone for aws_uri_param
sourcefn clone(&self) -> aws_uri_param
fn clone(&self) -> aws_uri_param
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_param
impl Debug for aws_uri_param
sourceimpl Default for aws_uri_param
impl Default for aws_uri_param
sourceimpl PartialEq<aws_uri_param> for aws_uri_param
impl PartialEq<aws_uri_param> for aws_uri_param
sourcefn eq(&self, other: &aws_uri_param) -> bool
fn eq(&self, other: &aws_uri_param) -> bool
impl Copy for aws_uri_param
impl Eq for aws_uri_param
impl StructuralEq for aws_uri_param
impl StructuralPartialEq for aws_uri_param
Auto Trait Implementations
impl RefUnwindSafe for aws_uri_param
impl !Send for aws_uri_param
impl !Sync for aws_uri_param
impl Unpin for aws_uri_param
impl UnwindSafe for aws_uri_param
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