pub struct GenericResponse {
pub content: String,
}Expand description
Response to a GenericMessage.
Fields§
§content: StringThe response content.
Implementations§
Trait Implementations§
Source§impl Clone for GenericResponse
impl Clone for GenericResponse
Source§fn clone(&self) -> GenericResponse
fn clone(&self) -> GenericResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 GenericResponse
impl Debug for GenericResponse
Source§impl<'de> Deserialize<'de> for GenericResponse
impl<'de> Deserialize<'de> for GenericResponse
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
Auto Trait Implementations§
impl Freeze for GenericResponse
impl RefUnwindSafe for GenericResponse
impl Send for GenericResponse
impl Sync for GenericResponse
impl Unpin for GenericResponse
impl UnwindSafe for GenericResponse
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