pub struct PopupFeatures {
pub size: usize,
pub x: c_int,
pub x_set: c_int,
pub y: c_int,
pub y_set: c_int,
pub width: c_int,
pub width_set: c_int,
pub height: c_int,
pub height_set: c_int,
pub is_popup: c_int,
}Expand description
See _cef_popup_features_t for more documentation.
Fields§
§size: usize§x: c_int§x_set: c_int§y: c_int§y_set: c_int§width: c_int§width_set: c_int§height: c_int§height_set: c_int§is_popup: c_intTrait Implementations§
Source§impl Clone for PopupFeatures
impl Clone for PopupFeatures
Source§fn clone(&self) -> PopupFeatures
fn clone(&self) -> PopupFeatures
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 Debug for PopupFeatures
impl Debug for PopupFeatures
Source§impl Default for PopupFeatures
impl Default for PopupFeatures
Source§impl From<PopupFeatures> for _cef_popup_features_t
impl From<PopupFeatures> for _cef_popup_features_t
Source§fn from(value: PopupFeatures) -> Self
fn from(value: PopupFeatures) -> Self
Converts to this type from the input type.
Source§impl From<_cef_popup_features_t> for PopupFeatures
impl From<_cef_popup_features_t> for PopupFeatures
Source§fn from(value: _cef_popup_features_t) -> Self
fn from(value: _cef_popup_features_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PopupFeatures
impl RefUnwindSafe for PopupFeatures
impl Send for PopupFeatures
impl Sync for PopupFeatures
impl Unpin for PopupFeatures
impl UnwindSafe for PopupFeatures
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