pub struct CloudMessageResponse {
pub message: String,
}Expand description
Wire shape of the message response returned by mutation endpoints.
Fields§
§message: StringHuman-readable response message.
Trait Implementations§
Source§impl Clone for CloudMessageResponse
impl Clone for CloudMessageResponse
Source§fn clone(&self) -> CloudMessageResponse
fn clone(&self) -> CloudMessageResponse
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 CloudMessageResponse
impl Debug for CloudMessageResponse
Source§impl<'de> Deserialize<'de> for CloudMessageResponse
impl<'de> Deserialize<'de> for CloudMessageResponse
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 CloudMessageResponse
impl RefUnwindSafe for CloudMessageResponse
impl Send for CloudMessageResponse
impl Sync for CloudMessageResponse
impl Unpin for CloudMessageResponse
impl UnsafeUnpin for CloudMessageResponse
impl UnwindSafe for CloudMessageResponse
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