#[repr(C)]pub struct in3_http_request {
pub method: *mut c_char,
pub payload: *mut c_char,
pub urls: *mut *mut c_char,
pub urls_len: uint_fast16_t,
pub payload_len: u32,
pub req: *mut in3_req,
pub cptr: *mut c_void,
pub wait: u32,
pub headers: *mut in3_req_header_t,
}Fields§
§method: *mut c_char§payload: *mut c_char§urls: *mut *mut c_char§urls_len: uint_fast16_t§payload_len: u32§req: *mut in3_req§cptr: *mut c_void§wait: u32§headers: *mut in3_req_header_tTrait Implementations§
Source§impl Clone for in3_http_request
impl Clone for in3_http_request
Source§fn clone(&self) -> in3_http_request
fn clone(&self) -> in3_http_request
Returns a copy 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 in3_http_request
impl Debug for in3_http_request
impl Copy for in3_http_request
Auto Trait Implementations§
impl Freeze for in3_http_request
impl RefUnwindSafe for in3_http_request
impl !Send for in3_http_request
impl !Sync for in3_http_request
impl Unpin for in3_http_request
impl UnwindSafe for in3_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