diff options
-rw-r--r-- | smalldog/src/lib.rs | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/smalldog/src/lib.rs b/smalldog/src/lib.rs index adfe9c1..e139d30 100644 --- a/smalldog/src/lib.rs +++ b/smalldog/src/lib.rs @@ -1,11 +1,5 @@ use core::ffi; -use std::{ - borrow::Cow, - ffi::{CStr, CString}, - ptr, - str::FromStr, - sync::Mutex, -}; +use std::{borrow::Cow, ffi::CStr, ptr, sync::Mutex}; #[repr(C)] pub struct ModuleRequest<'req> { @@ -51,6 +45,14 @@ impl<'req> Request<'req> { None } + + pub fn headers(&self) -> &[(Cow<str>, Cow<str>)] { + &self.headers + } + + pub fn body(&self) -> Option<&[u8]> { + self.body + } } #[repr(C)] |