pub struct TileReaderParameters {
pub bbox_pyramid: TileBBoxPyramid,
pub decompressor: DataConverter,
pub flip_y: bool,
pub swap_xy: bool,
pub tile_compression: Compression,
pub tile_format: TileFormat,
}Fields§
§bbox_pyramid: TileBBoxPyramid§decompressor: DataConverter§flip_y: bool§swap_xy: bool§tile_compression: Compression§tile_format: TileFormatImplementations§
source§impl TileReaderParameters
impl TileReaderParameters
pub fn new( tile_format: TileFormat, tile_compression: Compression, bbox_pyramid: TileBBoxPyramid ) -> TileReaderParameters
pub fn transform_forward<T>(&self, bbox: &mut T)where T: TransformCoord,
pub fn transform_backward<T>(&self, bbox: &mut T)where T: TransformCoord,
pub fn set_bbox_pyramid(&mut self, pyramid: TileBBoxPyramid)
Trait Implementations§
source§impl Clone for TileReaderParameters
impl Clone for TileReaderParameters
source§fn clone(&self) -> TileReaderParameters
fn clone(&self) -> TileReaderParameters
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TileReaderParameters
impl Debug for TileReaderParameters
source§impl PartialEq for TileReaderParameters
impl PartialEq for TileReaderParameters
source§fn eq(&self, other: &TileReaderParameters) -> bool
fn eq(&self, other: &TileReaderParameters) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TileReaderParameters
impl StructuralEq for TileReaderParameters
impl StructuralPartialEq for TileReaderParameters
Auto Trait Implementations§
impl RefUnwindSafe for TileReaderParameters
impl Send for TileReaderParameters
impl Sync for TileReaderParameters
impl Unpin for TileReaderParameters
impl UnwindSafe for TileReaderParameters
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