pub struct TileDescription {
pub tile_size: Vec2<usize>,
pub level_mode: LevelMode,
pub rounding_mode: RoundingMode,
}
Expand description
Describes how the layer is divided into tiles. Specifies the size of each tile in the image and whether this image contains multiple resolution levels.
Fields
tile_size: Vec2<usize>
The size of each tile. Stays the same number of pixels across all levels.
level_mode: LevelMode
Whether to also store smaller versions of the image.
rounding_mode: RoundingMode
Whether to round up or down when calculating Mip/Rip levels.
Implementations
sourceimpl TileDescription
impl TileDescription
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 validate(&self) -> UnitResult
pub fn validate(&self) -> UnitResult
Validate this instance.
Trait Implementations
sourceimpl Clone for TileDescription
impl Clone for TileDescription
sourcefn clone(&self) -> TileDescription
fn clone(&self) -> TileDescription
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 TileDescription
impl Debug for TileDescription
sourceimpl Hash for TileDescription
impl Hash for TileDescription
sourceimpl PartialEq<TileDescription> for TileDescription
impl PartialEq<TileDescription> for TileDescription
sourcefn eq(&self, other: &TileDescription) -> bool
fn eq(&self, other: &TileDescription) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TileDescription) -> bool
fn ne(&self, other: &TileDescription) -> bool
This method tests for !=
.
impl Copy for TileDescription
impl Eq for TileDescription
impl StructuralEq for TileDescription
impl StructuralPartialEq for TileDescription
Auto Trait Implementations
impl RefUnwindSafe for TileDescription
impl Send for TileDescription
impl Sync for TileDescription
impl Unpin for TileDescription
impl UnwindSafe for TileDescription
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<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