pub struct MediaSink(/* private fields */);Expand description
See _cef_media_sink_t for more documentation.
Trait Implementations§
Source§impl ConvertParam<*mut _cef_media_sink_t> for &MediaSink
impl ConvertParam<*mut _cef_media_sink_t> for &MediaSink
fn into_raw(self) -> *mut _cef_media_sink_t
Source§impl ConvertParam<*mut _cef_media_sink_t> for &mut MediaSink
impl ConvertParam<*mut _cef_media_sink_t> for &mut MediaSink
fn into_raw(self) -> *mut _cef_media_sink_t
Source§impl ConvertReturnValue<MediaSink> for *mut _cef_media_sink_t
impl ConvertReturnValue<MediaSink> for *mut _cef_media_sink_t
fn wrap_result(self) -> MediaSink
Source§impl ImplMediaSink for MediaSink
impl ImplMediaSink for MediaSink
Source§fn id(&self) -> CefStringUserfree
fn id(&self) -> CefStringUserfree
See
_cef_media_sink_t::get_id for more documentation.Source§fn name(&self) -> CefStringUserfree
fn name(&self) -> CefStringUserfree
See
_cef_media_sink_t::get_name for more documentation.Source§fn icon_type(&self) -> MediaSinkIconType
fn icon_type(&self) -> MediaSinkIconType
See
_cef_media_sink_t::get_icon_type for more documentation.Source§fn device_info(&self, callback: Option<&mut MediaSinkDeviceInfoCallback>)
fn device_info(&self, callback: Option<&mut MediaSinkDeviceInfoCallback>)
See
_cef_media_sink_t::get_device_info for more documentation.Source§fn is_cast_sink(&self) -> c_int
fn is_cast_sink(&self) -> c_int
See
_cef_media_sink_t::is_cast_sink for more documentation.Source§fn is_dial_sink(&self) -> c_int
fn is_dial_sink(&self) -> c_int
See
_cef_media_sink_t::is_dial_sink for more documentation.Source§fn is_compatible_with(&self, source: Option<&mut MediaSource>) -> c_int
fn is_compatible_with(&self, source: Option<&mut MediaSource>) -> c_int
See
_cef_media_sink_t::is_compatible_with for more documentation.fn get_raw(&self) -> *mut _cef_media_sink_t
Source§impl Rc for MediaSink
impl Rc for MediaSink
Source§fn as_base(&self) -> &_cef_base_ref_counted_t
fn as_base(&self) -> &_cef_base_ref_counted_t
Get the reference of cef_base_ref_counted_t.
Source§unsafe fn release(&self) -> bool
unsafe fn release(&self) -> bool
Decrease reference count by 1 and release the value if the count meets 0.
Reuturn
True if it is released. Read moreSource§fn has_one_ref(&self) -> bool
fn has_one_ref(&self) -> bool
True if the reference count is exactly 1.Source§fn has_at_least_one_ref(&self) -> bool
fn has_at_least_one_ref(&self) -> bool
True if the reference count is larger than 0.Auto Trait Implementations§
impl Freeze for MediaSink
impl RefUnwindSafe for MediaSink
impl Send for MediaSink
impl Sync for MediaSink
impl Unpin for MediaSink
impl UnwindSafe for MediaSink
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