Struct windows::Media::SystemMediaTransportControls
pub struct SystemMediaTransportControls(/* private fields */);
Implementations§
§impl SystemMediaTransportControls
impl SystemMediaTransportControls
pub fn PlaybackStatus(&self) -> Result<MediaPlaybackStatus>
pub fn SetPlaybackStatus(&self, value: MediaPlaybackStatus) -> Result<()>
pub fn DisplayUpdater( &self, ) -> Result<SystemMediaTransportControlsDisplayUpdater>
pub fn SoundLevel(&self) -> Result<SoundLevel>
pub fn IsEnabled(&self) -> Result<bool>
pub fn SetIsEnabled(&self, value: bool) -> Result<()>
pub fn IsPlayEnabled(&self) -> Result<bool>
pub fn SetIsPlayEnabled(&self, value: bool) -> Result<()>
pub fn IsStopEnabled(&self) -> Result<bool>
pub fn SetIsStopEnabled(&self, value: bool) -> Result<()>
pub fn IsPauseEnabled(&self) -> Result<bool>
pub fn SetIsPauseEnabled(&self, value: bool) -> Result<()>
pub fn IsRecordEnabled(&self) -> Result<bool>
pub fn SetIsRecordEnabled(&self, value: bool) -> Result<()>
pub fn IsFastForwardEnabled(&self) -> Result<bool>
pub fn SetIsFastForwardEnabled(&self, value: bool) -> Result<()>
pub fn IsRewindEnabled(&self) -> Result<bool>
pub fn SetIsRewindEnabled(&self, value: bool) -> Result<()>
pub fn IsPreviousEnabled(&self) -> Result<bool>
pub fn SetIsPreviousEnabled(&self, value: bool) -> Result<()>
pub fn IsNextEnabled(&self) -> Result<bool>
pub fn SetIsNextEnabled(&self, value: bool) -> Result<()>
pub fn IsChannelUpEnabled(&self) -> Result<bool>
pub fn SetIsChannelUpEnabled(&self, value: bool) -> Result<()>
pub fn IsChannelDownEnabled(&self) -> Result<bool>
pub fn SetIsChannelDownEnabled(&self, value: bool) -> Result<()>
pub fn ButtonPressed<P0>(&self, handler: P0) -> Result<EventRegistrationToken>
pub fn RemoveButtonPressed(&self, token: EventRegistrationToken) -> Result<()>
pub fn PropertyChanged<P0>(&self, handler: P0) -> Result<EventRegistrationToken>
pub fn RemovePropertyChanged(&self, token: EventRegistrationToken) -> Result<()>
pub fn AutoRepeatMode(&self) -> Result<MediaPlaybackAutoRepeatMode>
pub fn SetAutoRepeatMode( &self, value: MediaPlaybackAutoRepeatMode, ) -> Result<()>
pub fn ShuffleEnabled(&self) -> Result<bool>
pub fn SetShuffleEnabled(&self, value: bool) -> Result<()>
pub fn PlaybackRate(&self) -> Result<f64>
pub fn SetPlaybackRate(&self, value: f64) -> Result<()>
pub fn UpdateTimelineProperties<P0>(&self, timelineproperties: P0) -> Result<()>where
P0: Param<SystemMediaTransportControlsTimelineProperties>,
pub fn PlaybackPositionChangeRequested<P0>(
&self,
handler: P0,
) -> Result<EventRegistrationToken>where
P0: Param<TypedEventHandler<SystemMediaTransportControls, PlaybackPositionChangeRequestedEventArgs>>,
pub fn RemovePlaybackPositionChangeRequested( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn PlaybackRateChangeRequested<P0>(
&self,
handler: P0,
) -> Result<EventRegistrationToken>where
P0: Param<TypedEventHandler<SystemMediaTransportControls, PlaybackRateChangeRequestedEventArgs>>,
pub fn RemovePlaybackRateChangeRequested( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn ShuffleEnabledChangeRequested<P0>(
&self,
handler: P0,
) -> Result<EventRegistrationToken>where
P0: Param<TypedEventHandler<SystemMediaTransportControls, ShuffleEnabledChangeRequestedEventArgs>>,
pub fn RemoveShuffleEnabledChangeRequested( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn AutoRepeatModeChangeRequested<P0>(
&self,
handler: P0,
) -> Result<EventRegistrationToken>where
P0: Param<TypedEventHandler<SystemMediaTransportControls, AutoRepeatModeChangeRequestedEventArgs>>,
pub fn RemoveAutoRepeatModeChangeRequested( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn GetForCurrentView() -> Result<SystemMediaTransportControls>
Trait Implementations§
§impl CanInto<IInspectable> for SystemMediaTransportControls
impl CanInto<IInspectable> for SystemMediaTransportControls
§impl CanInto<IUnknown> for SystemMediaTransportControls
impl CanInto<IUnknown> for SystemMediaTransportControls
§impl Clone for SystemMediaTransportControls
impl Clone for SystemMediaTransportControls
§fn clone(&self) -> SystemMediaTransportControls
fn clone(&self) -> SystemMediaTransportControls
Returns a copy 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 more§impl Debug for SystemMediaTransportControls
impl Debug for SystemMediaTransportControls
§impl From<&SystemMediaTransportControls> for &IInspectable
impl From<&SystemMediaTransportControls> for &IInspectable
§fn from(value: &SystemMediaTransportControls) -> Self
fn from(value: &SystemMediaTransportControls) -> Self
Converts to this type from the input type.
§impl From<&SystemMediaTransportControls> for &IUnknown
impl From<&SystemMediaTransportControls> for &IUnknown
§fn from(value: &SystemMediaTransportControls) -> Self
fn from(value: &SystemMediaTransportControls) -> Self
Converts to this type from the input type.
§impl From<SystemMediaTransportControls> for IInspectable
impl From<SystemMediaTransportControls> for IInspectable
§fn from(value: SystemMediaTransportControls) -> Self
fn from(value: SystemMediaTransportControls) -> Self
Converts to this type from the input type.
§impl From<SystemMediaTransportControls> for IUnknown
impl From<SystemMediaTransportControls> for IUnknown
§fn from(value: SystemMediaTransportControls) -> Self
fn from(value: SystemMediaTransportControls) -> Self
Converts to this type from the input type.
§impl Interface for SystemMediaTransportControls
impl Interface for SystemMediaTransportControls
§const IID: GUID = <ISystemMediaTransportControls as windows_core::Interface>::IID
const IID: GUID = <ISystemMediaTransportControls as windows_core::Interface>::IID
The
GUID
associated with the interface.§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for SystemMediaTransportControls
impl PartialEq for SystemMediaTransportControls
§fn eq(&self, other: &SystemMediaTransportControls) -> bool
fn eq(&self, other: &SystemMediaTransportControls) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for SystemMediaTransportControls
impl Send for SystemMediaTransportControls
impl StructuralPartialEq for SystemMediaTransportControls
impl Sync for SystemMediaTransportControls
Auto Trait Implementations§
impl Freeze for SystemMediaTransportControls
impl RefUnwindSafe for SystemMediaTransportControls
impl Unpin for SystemMediaTransportControls
impl UnwindSafe for SystemMediaTransportControls
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)