#[repr(transparent)]pub struct Rectangle(_);
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)
Trait Implementations§
source§impl<'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.
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
§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 PartialEq<Rectangle> for Rectangle
impl PartialEq<Rectangle> for Rectangle
source§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
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§
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> 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 Twhere
T: Send + ToValue + ?Sized,
impl<T> ToSendValue for Twhere T: Send + ToValue + ?Sized,
source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.