pub struct Inputs<'a> {
pub labels: &'a HashMap<String, String>,
pub query: &'a [(String, String)],
pub headers: &'a HeaderMap,
pub body: &'a Map<String, Value>,
}Expand description
The request inputs, already split by wire location.
Fields§
§labels: &'a HashMap<String, String>§query: &'a [(String, String)]§headers: &'a HeaderMap§body: &'a Map<String, Value>Auto Trait Implementations§
impl<'a> Freeze for Inputs<'a>
impl<'a> RefUnwindSafe for Inputs<'a>
impl<'a> Send for Inputs<'a>
impl<'a> Sync for Inputs<'a>
impl<'a> Unpin for Inputs<'a>
impl<'a> UnsafeUnpin for Inputs<'a>
impl<'a> UnwindSafe for Inputs<'a>
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