pub struct VectorTaskOutput {
pub cache_key: VectorCacheKey,
pub mesh: VectorMeshData,
pub symbol_candidates: Vec<SymbolCandidate>,
}Expand description
Output from an async vector tessellation task.
Fields§
§cache_key: VectorCacheKeyCache key matching the input.
mesh: VectorMeshDataTessellated mesh data.
symbol_candidates: Vec<SymbolCandidate>Symbol candidates extracted during tessellation.
Auto Trait Implementations§
impl Freeze for VectorTaskOutput
impl RefUnwindSafe for VectorTaskOutput
impl Send for VectorTaskOutput
impl Sync for VectorTaskOutput
impl Unpin for VectorTaskOutput
impl UnsafeUnpin for VectorTaskOutput
impl UnwindSafe for VectorTaskOutput
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