pub struct RespPostResponse {
pub action: String,
pub responses: Vec<ResponseReceipt>,
pub extras: AgentResponseExtras,
}Fields§
§action: String§responses: Vec<ResponseReceipt>§extras: AgentResponseExtrasImplementations§
Source§impl RespPostResponse
impl RespPostResponse
pub fn new(responses: Vec<ResponseReceipt>) -> Self
Trait Implementations§
Source§impl Clone for RespPostResponse
impl Clone for RespPostResponse
Source§fn clone(&self) -> RespPostResponse
fn clone(&self) -> RespPostResponse
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 RespPostResponse
impl Debug for RespPostResponse
Source§impl<'de> Deserialize<'de> for RespPostResponse
impl<'de> Deserialize<'de> for RespPostResponse
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
Source§impl PartialEq for RespPostResponse
impl PartialEq for RespPostResponse
Source§fn eq(&self, other: &RespPostResponse) -> bool
fn eq(&self, other: &RespPostResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RespPostResponse
impl Serialize for RespPostResponse
impl StructuralPartialEq for RespPostResponse
Auto Trait Implementations§
impl Freeze for RespPostResponse
impl RefUnwindSafe for RespPostResponse
impl Send for RespPostResponse
impl Sync for RespPostResponse
impl Unpin for RespPostResponse
impl UnsafeUnpin for RespPostResponse
impl UnwindSafe for RespPostResponse
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