#[repr(C)]pub struct r_socket_http_request {
pub s: *mut RSocket,
pub path: *mut c_char,
pub host: *mut c_char,
pub agent: *mut c_char,
pub method: *mut c_char,
pub referer: *mut c_char,
pub data: *mut c_uchar,
pub data_length: c_int,
pub auth: bool,
}
Fields§
§s: *mut RSocket
§path: *mut c_char
§host: *mut c_char
§agent: *mut c_char
§method: *mut c_char
§referer: *mut c_char
§data: *mut c_uchar
§data_length: c_int
§auth: bool
Trait Implementations§
Source§impl Clone for r_socket_http_request
impl Clone for r_socket_http_request
Source§fn clone(&self) -> r_socket_http_request
fn clone(&self) -> r_socket_http_request
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 r_socket_http_request
impl Debug for r_socket_http_request
impl Copy for r_socket_http_request
Auto Trait Implementations§
impl Freeze for r_socket_http_request
impl RefUnwindSafe for r_socket_http_request
impl !Send for r_socket_http_request
impl !Sync for r_socket_http_request
impl Unpin for r_socket_http_request
impl UnwindSafe for r_socket_http_request
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