Expand description
A rectangular section anywhere in 2D integer space.
Valid from minimum coordinate (including) -1,073,741,822
to maximum coordinate (including) 1,073,741,822
, the value of (i32::MAX/2 -1
).
Fields
position: Vec2<i32>
The top left corner of this rectangle.
The Box2I32
includes this pixel if the size is not zero.
size: Vec2<usize>
How many pixels to include in this Box2I32
.
Extends to the right and downwards.
Does not include the actual boundary, just like Vec::len()
.
Implementations
sourceimpl IntegerBounds
impl IntegerBounds
sourcepub fn from_dimensions(size: impl Into<Vec2<usize>>) -> Self
pub fn from_dimensions(size: impl Into<Vec2<usize>>) -> Self
Create a box with a size starting at zero.
sourcepub fn new(start: impl Into<Vec2<i32>>, size: impl Into<Vec2<usize>>) -> Self
pub fn new(start: impl Into<Vec2<i32>>, size: impl Into<Vec2<usize>>) -> Self
Create a box with a size and an origin point.
sourcepub fn end(self) -> Vec2<i32>
pub fn end(self) -> Vec2<i32>
Returns the top-right coordinate of the rectangle.
The row and column described by this vector are not included in the rectangle,
just like Vec::len()
.
sourcepub fn max(self) -> Vec2<i32>
pub fn max(self) -> Vec2<i32>
Returns the maximum coordinate that a value in this rectangle may have.
sourcepub fn write<W: Write>(&self, write: &mut W) -> UnitResult
pub fn write<W: Write>(&self, write: &mut W) -> UnitResult
Without validation, write this instance to the byte stream.
sourcepub fn with_origin(self, origin: Vec2<i32>) -> Self
pub fn with_origin(self, origin: Vec2<i32>) -> Self
Create a new rectangle which is offset by the specified origin.
Trait Implementations
sourceimpl Clone for IntegerBounds
impl Clone for IntegerBounds
sourcefn clone(&self) -> IntegerBounds
fn clone(&self) -> IntegerBounds
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for IntegerBounds
impl Debug for IntegerBounds
sourceimpl Default for IntegerBounds
impl Default for IntegerBounds
sourcefn default() -> IntegerBounds
fn default() -> IntegerBounds
Returns the “default value” for a type. Read more
sourceimpl Hash for IntegerBounds
impl Hash for IntegerBounds
sourceimpl PartialEq<IntegerBounds> for IntegerBounds
impl PartialEq<IntegerBounds> for IntegerBounds
sourcefn eq(&self, other: &IntegerBounds) -> bool
fn eq(&self, other: &IntegerBounds) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &IntegerBounds) -> bool
fn ne(&self, other: &IntegerBounds) -> bool
This method tests for !=
.
impl Copy for IntegerBounds
impl Eq for IntegerBounds
impl StructuralEq for IntegerBounds
impl StructuralPartialEq for IntegerBounds
Auto Trait Implementations
impl RefUnwindSafe for IntegerBounds
impl Send for IntegerBounds
impl Sync for IntegerBounds
impl Unpin for IntegerBounds
impl UnwindSafe for IntegerBounds
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more