pub struct BuiltTile {
pub uri: String,
pub pnts: Vec<u8>,
pub point_count: usize,
}Expand description
One generated tile payload paired with its content URI.
Fields§
§uri: StringContent URI relative to tileset.json.
pnts: Vec<u8>Encoded pnts payload.
point_count: usizePoints materialized by this tile.
Trait Implementations§
impl StructuralPartialEq for BuiltTile
Auto Trait Implementations§
impl Freeze for BuiltTile
impl RefUnwindSafe for BuiltTile
impl Send for BuiltTile
impl Sync for BuiltTile
impl Unpin for BuiltTile
impl UnsafeUnpin for BuiltTile
impl UnwindSafe for BuiltTile
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