pub struct HttpQueueSendRequest {
pub body: Cbor,
pub name: Option<String>,
pub wait: Option<bool>,
pub timeout: Option<u64>,
}Fields§
§body: Cbor§name: Option<String>§wait: Option<bool>§timeout: Option<u64>Trait Implementations§
Source§impl Clone for HttpQueueSendRequest
impl Clone for HttpQueueSendRequest
Source§fn clone(&self) -> HttpQueueSendRequest
fn clone(&self) -> HttpQueueSendRequest
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 HttpQueueSendRequest
impl Debug for HttpQueueSendRequest
Source§impl<'de> Deserialize<'de> for HttpQueueSendRequest
impl<'de> Deserialize<'de> for HttpQueueSendRequest
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 HttpQueueSendRequest
Source§impl From<HttpQueueSendRequest> for HttpQueueSendRequest
impl From<HttpQueueSendRequest> for HttpQueueSendRequest
Source§fn from(value: HttpQueueSendRequest) -> Self
fn from(value: HttpQueueSendRequest) -> Self
Converts to this type from the input type.
Source§impl From<HttpQueueSendRequest> for HttpQueueSendRequest
impl From<HttpQueueSendRequest> for HttpQueueSendRequest
Source§fn from(value: HttpQueueSendRequest) -> Self
fn from(value: HttpQueueSendRequest) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HttpQueueSendRequest
impl PartialEq for HttpQueueSendRequest
Source§fn eq(&self, other: &HttpQueueSendRequest) -> bool
fn eq(&self, other: &HttpQueueSendRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HttpQueueSendRequest
impl Serialize for HttpQueueSendRequest
impl StructuralPartialEq for HttpQueueSendRequest
Auto Trait Implementations§
impl Freeze for HttpQueueSendRequest
impl RefUnwindSafe for HttpQueueSendRequest
impl Send for HttpQueueSendRequest
impl Sync for HttpQueueSendRequest
impl Unpin for HttpQueueSendRequest
impl UnsafeUnpin for HttpQueueSendRequest
impl UnwindSafe for HttpQueueSendRequest
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