pub struct Rectangle(/* private fields */);
Implementations§
Source§impl Rectangle
impl Rectangle
pub fn new(x: f64, y: f64, width: f64, height: f64) -> Self
pub fn x(&self) -> f64
pub fn set_x(&mut self, x: f64)
pub fn y(&self) -> f64
pub fn set_y(&mut self, y: f64)
pub fn width(&self) -> f64
pub fn set_width(&mut self, width: f64)
pub fn height(&self) -> f64
pub fn set_height(&mut self, height: f64)
Source§impl Rectangle
impl Rectangle
pub fn to_raw_none(&self) -> *mut cairo_rectangle_t
Trait Implementations§
Source§impl<'a> FromValue<'a> for &'a Rectangle
impl<'a> FromValue<'a> for &'a Rectangle
Source§type Checker = GenericValueTypeOrNoneChecker<&'a Rectangle>
type Checker = GenericValueTypeOrNoneChecker<&'a Rectangle>
Value type checker.
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moreSource§impl<'a> FromValue<'a> for Rectangle
impl<'a> FromValue<'a> for Rectangle
Source§type Checker = GenericValueTypeOrNoneChecker<Rectangle>
type Checker = GenericValueTypeOrNoneChecker<Rectangle>
Value type checker.
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moreSource§impl StaticType for Rectangle
impl StaticType for Rectangle
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.Source§impl ToValueOptional for Rectangle
impl ToValueOptional for Rectangle
Source§fn to_value_optional(s: Option<&Self>) -> Value
fn to_value_optional(s: Option<&Self>) -> Value
Convert an
Option
to a Value
.impl Copy for Rectangle
impl StructuralPartialEq for Rectangle
impl ValueTypeOptional for Rectangle
Auto Trait Implementations§
impl Freeze for Rectangle
impl RefUnwindSafe for Rectangle
impl Send for Rectangle
impl Sync for Rectangle
impl Unpin for Rectangle
impl UnwindSafe for Rectangle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
Source§fn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.