pub struct BakeResult {
pub chunk: Chunk,
pub surface: Option<ChunkSurface>,
/* private fields */
}Expand description
One bake outcome. surface == None means the job was CANCELLED (its chunk
left the wanted set before a worker got to it) — the in-flight entry is
released so the chunk re-queues if it comes back into view.
Fields§
§chunk: Chunk§surface: Option<ChunkSurface>Auto Trait Implementations§
impl Freeze for BakeResult
impl RefUnwindSafe for BakeResult
impl Send for BakeResult
impl Sync for BakeResult
impl Unpin for BakeResult
impl UnsafeUnpin for BakeResult
impl UnwindSafe for BakeResult
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