#[repr(transparent)]pub struct Rectangle { /* private fields */ }
Implementations
sourceimpl Rectangle
impl Rectangle
pub fn new(x: i32, y: i32, width: i32, height: i32) -> Self
pub fn x(&self) -> i32
pub fn set_x(&mut self, x: i32)
pub fn y(&self) -> i32
pub fn set_y(&mut self, y: i32)
pub fn width(&self) -> i32
pub fn set_width(&mut self, width: i32)
pub fn height(&self) -> i32
pub fn set_height(&mut self, height: i32)
Trait Implementations
sourceimpl AsRef<RectangleInt> for Rectangle
impl AsRef<RectangleInt> for Rectangle
sourcefn as_ref(&self) -> &RectangleInt
fn as_ref(&self) -> &RectangleInt
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl From<Rectangle> for Rectangle
impl From<Rectangle> for Rectangle
sourcefn from(r: Rectangle) -> Self
fn from(r: Rectangle) -> Self
Note that converting between a cairo::Rectangle
and Rectangle
will probably lead to precisison errors. Use cautiously.
sourceimpl From<Rectangle> for RectangleInt
impl From<Rectangle> for RectangleInt
sourceimpl From<RectangleInt> for Rectangle
impl From<RectangleInt> for Rectangle
sourcefn from(r: RectangleInt) -> Self
fn from(r: RectangleInt) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<Rectangle> for Rectangle
impl PartialEq<Rectangle> for Rectangle
sourceimpl StaticType for Rectangle
impl StaticType for Rectangle
sourcefn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of Self
.
impl Copy for Rectangle
impl Eq for Rectangle
Auto Trait Implementations
impl RefUnwindSafe for Rectangle
impl Send for Rectangle
impl Sync for Rectangle
impl Unpin for Rectangle
impl UnwindSafe for Rectangle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> StaticTypeExt for T where
T: StaticType,
impl<T> StaticTypeExt for T where
T: StaticType,
sourcefn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
sourceimpl<T> ToClosureReturnValue for T where
T: ToValue,
impl<T> ToClosureReturnValue for T where
T: ToValue,
fn to_closure_return_value(&self) -> Option<Value>
sourceimpl<T> ToSendValue for T where
T: Send + ToValue + ?Sized,
impl<T> ToSendValue for T where
T: Send + ToValue + ?Sized,
sourcefn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a SendValue
clone of self
.