pub enum RawData {
None,
Json(Value),
String(String),
Raw(Vec<u8>),
}
Expand description
Raw HTTP data if the HTTP POST data was not recognized
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawData
impl RefUnwindSafe for RawData
impl Send for RawData
impl Sync for RawData
impl Unpin for RawData
impl UnwindSafe for RawData
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