Struct freya_engine::prelude::RRect

pub struct RRect(/* private fields */);

Implementations§

§

impl RRect

pub fn new() -> RRect

pub fn get_type(&self) -> SkRRect_Type

pub fn is_empty(&self) -> bool

pub fn is_rect(&self) -> bool

pub fn is_oval(&self) -> bool

pub fn is_simple(&self) -> bool

pub fn is_nine_patch(&self) -> bool

pub fn is_complex(&self) -> bool

pub fn width(&self) -> f32

pub fn height(&self) -> f32

pub fn simple_radii(&self) -> Point

pub fn set_empty(&mut self)

pub fn set_rect(&mut self, rect: impl AsRef<Rect>)

pub fn new_empty() -> RRect

pub fn new_rect(rect: impl AsRef<Rect>) -> RRect

pub fn new_oval(oval: impl AsRef<Rect>) -> RRect

pub fn new_rect_xy(rect: impl AsRef<Rect>, x_rad: f32, y_rad: f32) -> RRect

pub fn new_nine_patch( rect: impl AsRef<Rect>, left_rad: f32, top_rad: f32, right_rad: f32, bottom_rad: f32, ) -> RRect

pub fn new_rect_radii(rect: impl AsRef<Rect>, radii: &[Point; 4]) -> RRect

pub fn set_oval(&mut self, oval: impl AsRef<Rect>)

pub fn set_rect_xy(&mut self, rect: impl AsRef<Rect>, x_rad: f32, y_rad: f32)

pub fn set_nine_patch( &mut self, rect: impl AsRef<Rect>, left_rad: f32, top_rad: f32, right_rad: f32, bottom_rad: f32, )

pub fn set_rect_radii(&mut self, rect: impl AsRef<Rect>, radii: &[Point; 4])

pub fn rect(&self) -> &Rect

pub fn radii(&self, corner: SkRRect_Corner) -> Point

pub fn bounds(&self) -> &Rect

pub fn inset(&mut self, delta: impl Into<Point>)

pub fn with_inset(&self, delta: impl Into<Point>) -> RRect

pub fn outset(&mut self, delta: impl Into<Point>)

pub fn with_outset(&self, delta: impl Into<Point>) -> RRect

pub fn offset(&mut self, delta: impl Into<Point>)

pub fn with_offset(&self, delta: impl Into<Point>) -> RRect

pub fn contains(&self, rect: impl AsRef<Rect>) -> bool

pub fn is_valid(&self) -> bool

pub const SIZE_IN_MEMORY: usize = 52usize

pub fn write_to_memory(&self, buffer: &mut Vec<u8>)

pub fn read_from_memory(&mut self, buffer: &[u8]) -> usize

pub fn transform(&self, matrix: &Matrix) -> Option<RRect>

pub fn dump(&self, as_hex: impl Into<Option<bool>>)

pub fn dump_to_string(&self, as_hex: bool) -> String

pub fn dump_hex(&self)

Trait Implementations§

§

impl AsRef<RRect> for RRect

§

fn as_ref(&self) -> &RRect

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for RRect

§

fn clone(&self) -> RRect

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for RRect

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for RRect

§

fn default() -> RRect

Returns the “default value” for a type. Read more
§

impl PartialEq for RRect

§

fn eq(&self, rhs: &RRect) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for RRect

Auto Trait Implementations§

§

impl Freeze for RRect

§

impl RefUnwindSafe for RRect

§

impl Send for RRect

§

impl Sync for RRect

§

impl Unpin for RRect

§

impl UnwindSafe for RRect

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<N, T> NativeTransmutableWrapper<N> for T
where T: NativeTransmutable<N>,

§

fn wrap(native: N) -> T

§

fn unwrap(self) -> N

§

fn inner(&self) -> &N

§

fn inner_mut(&mut self) -> &mut N

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.