pub struct HttpControlPlaneRequest {
pub method: String,
pub path: String,
pub body: Vec<u8>,
pub timeout_ms: u64,
}Expand description
Transport request produced by HttpControlPlaneClient.
Fields§
§method: StringHTTP method.
path: StringStable endpoint path relative to the configured base URL.
body: Vec<u8>Serialized JSON body.
timeout_ms: u64Per-attempt timeout.
Trait Implementations§
Source§impl Clone for HttpControlPlaneRequest
impl Clone for HttpControlPlaneRequest
Source§fn clone(&self) -> HttpControlPlaneRequest
fn clone(&self) -> HttpControlPlaneRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HttpControlPlaneRequest
impl Debug for HttpControlPlaneRequest
impl Eq for HttpControlPlaneRequest
Source§impl PartialEq for HttpControlPlaneRequest
impl PartialEq for HttpControlPlaneRequest
impl StructuralPartialEq for HttpControlPlaneRequest
Auto Trait Implementations§
impl Freeze for HttpControlPlaneRequest
impl RefUnwindSafe for HttpControlPlaneRequest
impl Send for HttpControlPlaneRequest
impl Sync for HttpControlPlaneRequest
impl Unpin for HttpControlPlaneRequest
impl UnsafeUnpin for HttpControlPlaneRequest
impl UnwindSafe for HttpControlPlaneRequest
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