#[repr(C)]pub struct mpv_event_client_message {
pub num_args: c_int,
pub args: *mut *const c_char,
}Fields§
§num_args: c_intArbitrary arguments chosen by the sender of the message. If num_args > 0, you can access args[0] through args[num_args - 1] (inclusive). What these arguments mean is up to the sender and receiver. None of the valid items are NULL.
args: *mut *const c_charTrait Implementations§
Source§impl Clone for mpv_event_client_message
impl Clone for mpv_event_client_message
Source§fn clone(&self) -> mpv_event_client_message
fn clone(&self) -> mpv_event_client_message
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 mpv_event_client_message
impl Debug for mpv_event_client_message
impl Copy for mpv_event_client_message
Auto Trait Implementations§
impl Freeze for mpv_event_client_message
impl RefUnwindSafe for mpv_event_client_message
impl !Send for mpv_event_client_message
impl !Sync for mpv_event_client_message
impl Unpin for mpv_event_client_message
impl UnwindSafe for mpv_event_client_message
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