pub struct Rect {
pub x: c_int,
pub y: c_int,
pub width: c_int,
pub height: c_int,
}Expand description
See _cef_rect_t for more documentation.
Fields§
§x: c_int§y: c_int§width: c_int§height: c_intTrait Implementations§
Source§impl From<Rect> for _cef_rect_t
impl From<Rect> for _cef_rect_t
Source§impl From<_cef_rect_t> for Rect
impl From<_cef_rect_t> for Rect
Source§fn from(value: _cef_rect_t) -> Self
fn from(value: _cef_rect_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Rect
impl RefUnwindSafe for Rect
impl Send for Rect
impl Sync for Rect
impl Unpin for Rect
impl UnwindSafe for Rect
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