pub struct WindowInfo {
pub size: usize,
pub window_name: CefString,
pub bounds: Rect,
pub parent_window: c_ulong,
pub windowless_rendering_enabled: c_int,
pub shared_texture_enabled: c_int,
pub external_begin_frame_enabled: c_int,
pub window: c_ulong,
pub runtime_style: RuntimeStyle,
}
Expand description
See _cef_window_info_t
for more documentation.
Fields§
§size: usize
§window_name: CefString
§bounds: Rect
§parent_window: c_ulong
§windowless_rendering_enabled: c_int
§external_begin_frame_enabled: c_int
§window: c_ulong
§runtime_style: RuntimeStyle
Trait Implementations§
Source§impl Clone for WindowInfo
impl Clone for WindowInfo
Source§fn clone(&self) -> WindowInfo
fn clone(&self) -> WindowInfo
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 moreSource§impl Default for WindowInfo
impl Default for WindowInfo
Source§impl From<WindowInfo> for _cef_window_info_t
impl From<WindowInfo> for _cef_window_info_t
Source§fn from(value: WindowInfo) -> Self
fn from(value: WindowInfo) -> Self
Converts to this type from the input type.
Source§impl From<_cef_window_info_t> for WindowInfo
impl From<_cef_window_info_t> for WindowInfo
Source§fn from(value: _cef_window_info_t) -> Self
fn from(value: _cef_window_info_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WindowInfo
impl RefUnwindSafe for WindowInfo
impl !Send for WindowInfo
impl !Sync for WindowInfo
impl Unpin for WindowInfo
impl UnwindSafe for WindowInfo
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