#[repr(transparent)]pub struct Rectangle(_);
Implementations
sourceimpl 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)
sourceimpl Rectangle
impl Rectangle
pub fn to_raw_none(&self) -> *mut cairo_rectangle_t
Trait Implementations
sourceimpl<'a> FromValue<'a> for &'a Rectangle
impl<'a> FromValue<'a> for &'a Rectangle
type Checker = GenericValueTypeOrNoneChecker<&'a Rectangle>
type Checker = GenericValueTypeOrNoneChecker<&'a Rectangle>
Value type checker.
sourceunsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a Value
. Read more
sourceimpl<'a> FromValue<'a> for Rectangle
impl<'a> FromValue<'a> for Rectangle
type Checker = GenericValueTypeOrNoneChecker<Rectangle>
type Checker = GenericValueTypeOrNoneChecker<Rectangle>
Value type checker.
sourceunsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a Value
. Read more
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
.
sourceimpl ToValueOptional for Rectangle
impl ToValueOptional for Rectangle
sourcefn 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 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
.