pub struct Point {
pub x: Int,
pub y: Int,
}Expand description
§Point in two-dimensional layout-space
Fields§
§x: Int§y: IntImplementations§
Source§impl Point
impl Point
Sourcepub fn offset(val: Int, dir: Dir) -> Self
pub fn offset(val: Int, dir: Dir) -> Self
Create a new Point which serves as an offset in direction dir
Sourcepub fn shift(&self, p: &Point) -> Point
pub fn shift(&self, p: &Point) -> Point
Create a new point shifted by x in the x-dimension and by y in the y-dimension
Trait Implementations§
Source§impl BoundBoxTrait for Point
impl BoundBoxTrait for Point
Source§impl<'de> Deserialize<'de> for Point
impl<'de> Deserialize<'de> for Point
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Point
impl Ord for Point
Source§impl PartialOrd for Point
impl PartialOrd for Point
impl Copy for Point
impl Eq for Point
impl StructuralPartialEq for Point
Auto Trait Implementations§
impl Freeze for Point
impl RefUnwindSafe for Point
impl Send for Point
impl Sync for Point
impl Unpin for Point
impl UnwindSafe for Point
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.