Expand description
Definitions and trait implementations for the various types that can be used to communicate with mpv.
Structs§
- Format
- A type representing the possible data types used in communication with mpv.
- OsdString
- A wrapper around
String
for mpv OSD property strings. SeeFormat::OSD_STRING
.
Enums§
- Node
- Generic data storage for various mpv argument types and responses.
Traits§
- MpvFormat
- Defines a type understood by mpv.
- MpvRecv
- Defines a type which may be received from mpv.
- MpvSend
- Defines a type which may be sent to mpv.
Type Aliases§
- Byte
Array - A
Vec<u8>
representing a raw, untyped byte array. Only used withNode
, and only in some very specific situations. (Some commands use it.) - Node
Array - A
Vec<Node>
, used only within aNode
, and only in specific situations. - NodeMap
- A
HashMap<String, Node>
, used only within aNode
, and only in specific situations.