#[repr(C)]pub struct UriQueryListStructA {
pub key: *const c_char,
pub value: *const c_char,
pub next: *mut UriQueryListStructA,
}Expand description
Represents a query element. More precisely it is a node in a linked list of query elements.
@since 0.7.0
Fields§
§key: *const c_char< Key of the query element
value: *const c_char< Value of the query element, can be NULL
next: *mut UriQueryListStructA< Pointer to the next key/value pair in the list, can be NULL if last already
Trait Implementations§
Source§impl Clone for UriQueryListStructA
impl Clone for UriQueryListStructA
Source§fn clone(&self) -> UriQueryListStructA
fn clone(&self) -> UriQueryListStructA
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UriQueryListStructA
impl Debug for UriQueryListStructA
Source§impl Default for UriQueryListStructA
impl Default for UriQueryListStructA
impl Copy for UriQueryListStructA
Auto Trait Implementations§
impl Freeze for UriQueryListStructA
impl RefUnwindSafe for UriQueryListStructA
impl !Send for UriQueryListStructA
impl !Sync for UriQueryListStructA
impl Unpin for UriQueryListStructA
impl UnwindSafe for UriQueryListStructA
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more