[][src]Struct framebuffer_manager::Point

pub struct Point {
    pub x: usize,
    pub y: usize,
}

Represents a point

Fields

x: usizey: usize

Methods

impl Point[src]

pub fn new(x: usize, y: usize) -> Self[src]

Creates a new Point with the given x, y coordinates

Trait Implementations

impl Copy for Point[src]

impl From<(usize, usize)> for Point[src]

impl Clone for Point[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Add<(usize, usize)> for Point[src]

type Output = Self

The resulting type after applying the + operator.

fn add(self, offset: (usize, usize)) -> Self[src]

Adds a (u8,u8) to the Point

#Examples

use framebuffer_manager::Point;

let p = Point::new(5,6);
let new_p = p + (1,2);
assert_eq!(new_p.x, 6);
assert_eq!(new_p.y, 8);

impl AddAssign<(usize, usize)> for Point[src]

Auto Trait Implementations

impl Send for Point

impl Unpin for Point

impl Sync for Point

impl UnwindSafe for Point

impl RefUnwindSafe for Point

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]