pub struct PhpExecuteRequest {Show 13 fields
pub script_path: String,
pub method: String,
pub uri: String,
pub query_string: String,
pub content_type: Option<String>,
pub body: Vec<u8>,
pub cookies: Option<String>,
pub headers: Vec<(String, String)>,
pub remote_addr: Option<String>,
pub server_name: Option<String>,
pub server_port: u16,
pub https: bool,
pub reply: Sender<PhpResponse>,
}Expand description
Inner data for a PHP execute request (boxed to reduce enum size).
Fields§
§script_path: String§method: String§uri: String§query_string: String§content_type: Option<String>§body: Vec<u8>§headers: Vec<(String, String)>§remote_addr: Option<String>§server_name: Option<String>§server_port: u16§https: bool§reply: Sender<PhpResponse>Auto Trait Implementations§
impl Freeze for PhpExecuteRequest
impl RefUnwindSafe for PhpExecuteRequest
impl Send for PhpExecuteRequest
impl Sync for PhpExecuteRequest
impl Unpin for PhpExecuteRequest
impl UnsafeUnpin for PhpExecuteRequest
impl UnwindSafe for PhpExecuteRequest
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