pub struct TextRectangle {
pub x: i32,
pub y: i32,
pub width: i32,
pub height: i32,
}Expand description
A structure used to store a rectangle used by AtkText.
Fields§
§x: i32§y: i32§width: i32§height: i32Implementations§
Source§impl TextRectangle
impl TextRectangle
pub fn uninitialized() -> Self
Trait Implementations§
Source§impl Debug for TextRectangle
impl Debug for TextRectangle
Auto Trait Implementations§
impl Freeze for TextRectangle
impl RefUnwindSafe for TextRectangle
impl Send for TextRectangle
impl Sync for TextRectangle
impl Unpin for TextRectangle
impl UnsafeUnpin for TextRectangle
impl UnwindSafe for TextRectangle
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