pub struct GetPropertyReply {
pub value: Result<PropertyValue>,
pub name: String,
pub userdata: u64,
}
Expand description
Details provided to Event::GetPropertyReply
.
Fields§
§value: Result<PropertyValue>
Value of the property, or an error if one occurred.
name: String
Name of the property.
userdata: u64
userdata
value passed to the mpv request which generated this event, if provided.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GetPropertyReply
impl RefUnwindSafe for GetPropertyReply
impl Send for GetPropertyReply
impl Sync for GetPropertyReply
impl Unpin for GetPropertyReply
impl UnwindSafe for GetPropertyReply
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