pub struct VectorCacheKey {
pub layer_id: String,
pub data_generation: u64,
pub projection: CameraProjection,
}Expand description
Cache key for a retained vector task result.
Fields§
§layer_id: StringLayer identifier (name or style layer id).
data_generation: u64Data generation counter.
projection: CameraProjectionProjection used for tessellation.
Trait Implementations§
Source§impl Clone for VectorCacheKey
impl Clone for VectorCacheKey
Source§fn clone(&self) -> VectorCacheKey
fn clone(&self) -> VectorCacheKey
Returns a duplicate 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 VectorCacheKey
impl Debug for VectorCacheKey
Source§impl Hash for VectorCacheKey
impl Hash for VectorCacheKey
Source§impl PartialEq for VectorCacheKey
impl PartialEq for VectorCacheKey
impl Eq for VectorCacheKey
impl StructuralPartialEq for VectorCacheKey
Auto Trait Implementations§
impl Freeze for VectorCacheKey
impl RefUnwindSafe for VectorCacheKey
impl Send for VectorCacheKey
impl Sync for VectorCacheKey
impl Unpin for VectorCacheKey
impl UnsafeUnpin for VectorCacheKey
impl UnwindSafe for VectorCacheKey
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