[−][src]Struct bracket_pathfinding::prelude::Rect  
Fields
x1: i32x2: i32y1: i32y2: i32Methods
impl Rect[src]
pub fn with_size<T>(x: T, y: T, w: T, h: T) -> Rect where
    T: TryInto<i32>, [src]
T: TryInto<i32>,
pub fn with_exact<T>(x1: T, y1: T, x2: T, y2: T) -> Rect where
    T: TryInto<i32>, [src]
T: TryInto<i32>,
pub fn zero() -> Rect[src]
pub fn intersect(&self, other: &Rect) -> bool[src]
pub fn center(&self) -> Point[src]
pub fn point_in_rect(&self, point: Point) -> bool[src]
pub fn for_each<F>(&self, f: F) where
    F: FnMut(Point), [src]
F: FnMut(Point),
pub fn point_set(&self) -> HashSet<Point, RandomState>[src]
pub fn width(&self) -> i32[src]
pub fn height(&self) -> i32[src]
Trait Implementations
impl Add<Rect> for Rect[src]
type Output = Rect
The resulting type after applying the + operator.
fn add(self, rhs: Rect) -> Rect[src]
impl Clone for Rect[src]
impl Copy for Rect[src]
impl Debug for Rect[src]
impl Default for Rect[src]
impl Eq for Rect[src]
impl PartialEq<Rect> for Rect[src]
impl StructuralEq for Rect[src]
impl StructuralPartialEq for Rect[src]
Auto Trait Implementations
impl RefUnwindSafe for Rect
impl Send for Rect
impl Sync for Rect
impl Unpin for Rect
impl UnwindSafe for Rect
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,