pub enum PropertyData<'a> {
Str(&'a str),
OsdStr(&'a str),
Flag(bool),
Int64(i64),
Double(c_double),
Node(&'a MpvNode),
}Expand description
Data that is returned by both GetPropertyReply and PropertyChange events.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PropertyData<'a>
impl<'a> RefUnwindSafe for PropertyData<'a>
impl<'a> !Send for PropertyData<'a>
impl<'a> !Sync for PropertyData<'a>
impl<'a> Unpin for PropertyData<'a>
impl<'a> UnwindSafe for PropertyData<'a>
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