pub trait MpvSend: MpvSendInternal { }
Expand description
Defines a type which may be sent to mpv.
All types sent to mpv must have a stable C representation. However, since trait implementations may be able to
construct these intermediate representations before sending the data to mpv, this trait is a superset of MpvRecv
(i.e., it includes &str
in addition to String
).
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.