pub struct Command {
pub id: u64,
pub url: String,
pub method: String,
pub headers: BTreeMap<String, String>,
pub body: Option<String>,
pub stream: bool,
pub credentials: Option<String>,
}Expand description
Server → browser command frame.
Identical shape to ControlRequest plus the server-assigned id.
Fields§
§id: u64Server-assigned correlation id; echoed back by the browser.
url: StringRequest URL (already scope-validated by the server).
method: StringHTTP method.
headers: BTreeMap<String, String>Request headers.
body: Option<String>Request body, or null.
stream: boolWhen true, the browser streams the response as chunk frames. Omitted
from the wire when false for back-compat with buffered clients.
credentials: Option<String>Fetch credentials mode (include | omit | same-origin), or null
to let the browser snippet default to include.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Command
impl<'de> Deserialize<'de> for Command
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Command
impl StructuralPartialEq for Command
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnsafeUnpin for Command
impl UnwindSafe for Command
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.