pub struct PlayResponse {
pub success: bool,
pub message: Option<String>,
}Fields§
§success: bool§message: Option<String>Trait Implementations§
Source§impl Clone for PlayResponse
impl Clone for PlayResponse
Source§fn clone(&self) -> PlayResponse
fn clone(&self) -> PlayResponse
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 PlayResponse
impl Debug for PlayResponse
Source§impl Default for PlayResponse
impl Default for PlayResponse
Source§fn default() -> PlayResponse
fn default() -> PlayResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlayResponse
impl<'de> Deserialize<'de> for PlayResponse
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 PlayResponse
impl RefUnwindSafe for PlayResponse
impl Send for PlayResponse
impl Sync for PlayResponse
impl Unpin for PlayResponse
impl UnwindSafe for PlayResponse
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