pub struct Display(/* private fields */);Expand description
See _cef_display_t for more documentation.
Trait Implementations§
Source§impl ConvertParam<*mut _cef_display_t> for &Display
impl ConvertParam<*mut _cef_display_t> for &Display
fn into_raw(self) -> *mut _cef_display_t
Source§impl ConvertParam<*mut _cef_display_t> for &mut Display
impl ConvertParam<*mut _cef_display_t> for &mut Display
fn into_raw(self) -> *mut _cef_display_t
Source§impl ConvertReturnValue<Display> for *mut _cef_display_t
impl ConvertReturnValue<Display> for *mut _cef_display_t
fn wrap_result(self) -> Display
Source§impl ImplDisplay for Display
impl ImplDisplay for Display
Source§fn id(&self) -> i64
fn id(&self) -> i64
See
_cef_display_t::get_id for more documentation.Source§fn device_scale_factor(&self) -> f32
fn device_scale_factor(&self) -> f32
See
_cef_display_t::get_device_scale_factor for more documentation.Source§fn convert_point_to_pixels(&self, point: Option<&mut Point>)
fn convert_point_to_pixels(&self, point: Option<&mut Point>)
See
_cef_display_t::convert_point_to_pixels for more documentation.Source§fn convert_point_from_pixels(&self, point: Option<&mut Point>)
fn convert_point_from_pixels(&self, point: Option<&mut Point>)
See
_cef_display_t::convert_point_from_pixels for more documentation.Source§fn bounds(&self) -> Rect
fn bounds(&self) -> Rect
See
_cef_display_t::get_bounds for more documentation.Source§fn work_area(&self) -> Rect
fn work_area(&self) -> Rect
See
_cef_display_t::get_work_area for more documentation.Source§fn rotation(&self) -> c_int
fn rotation(&self) -> c_int
See
_cef_display_t::get_rotation for more documentation.fn get_raw(&self) -> *mut _cef_display_t
Source§impl Rc for Display
impl Rc for Display
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 Display
impl RefUnwindSafe for Display
impl Send for Display
impl Sync for Display
impl Unpin for Display
impl UnwindSafe for Display
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