pub struct MpvCommandResponse {
pub data: Option<Value>,
pub error: String,
pub request_id: u32,
}
Fields§
§data: Option<Value>
§error: String
§request_id: u32
Trait Implementations§
Source§impl Clone for MpvCommandResponse
impl Clone for MpvCommandResponse
Source§fn clone(&self) -> MpvCommandResponse
fn clone(&self) -> MpvCommandResponse
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 MpvCommandResponse
impl Debug for MpvCommandResponse
Source§impl<'de> Deserialize<'de> for MpvCommandResponse
impl<'de> Deserialize<'de> for MpvCommandResponse
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 MpvCommandResponse
impl PartialEq for MpvCommandResponse
Source§impl Serialize for MpvCommandResponse
impl Serialize for MpvCommandResponse
impl StructuralPartialEq for MpvCommandResponse
Auto Trait Implementations§
impl Freeze for MpvCommandResponse
impl RefUnwindSafe for MpvCommandResponse
impl Send for MpvCommandResponse
impl Sync for MpvCommandResponse
impl Unpin for MpvCommandResponse
impl UnwindSafe for MpvCommandResponse
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