#[repr(C)]pub struct _cef_linux_window_properties_t {
pub size: usize,
pub wayland_app_id: cef_string_t,
pub wm_class_class: cef_string_t,
pub wm_class_name: cef_string_t,
pub wm_role_name: cef_string_t,
}Expand description
Linux window properties, such as X11’s WM_CLASS or Wayland’s app_id. Those are passed to CefWindowDelegate, so the client can set them for the CefWindow’s top-level. Thus, allowing window managers to correctly display the application’s information (e.g., icons).
Fields§
§size: usizeSize of this structure.
wayland_app_id: cef_string_tMain window’s Wayland’s app_id
wm_class_class: cef_string_tMain window’s WM_CLASS_CLASS in X11
wm_class_name: cef_string_tMain window’s WM_CLASS_NAME in X11
wm_role_name: cef_string_tMain window’s WM_WINDOW_ROLE in X11
Trait Implementations§
Source§impl Clone for _cef_linux_window_properties_t
impl Clone for _cef_linux_window_properties_t
Source§fn clone(&self) -> _cef_linux_window_properties_t
fn clone(&self) -> _cef_linux_window_properties_t
Returns a duplicate 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 moreimpl Copy for _cef_linux_window_properties_t
Auto Trait Implementations§
impl Freeze for _cef_linux_window_properties_t
impl RefUnwindSafe for _cef_linux_window_properties_t
impl !Send for _cef_linux_window_properties_t
impl !Sync for _cef_linux_window_properties_t
impl Unpin for _cef_linux_window_properties_t
impl UnwindSafe for _cef_linux_window_properties_t
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