segfault

Results 85 comments of segfault

I can think of a pretty reasonable use-case though: if someone wants to support printing both aligned and delimited output, and doesn't want to duplicate the table creation code.

@devgony ```rust let string = table .row_iter() .map(|row| { row.cell_iter() .map(Cell::content) .map(|cell| cell.escape_default().to_string()) .collect::() .join(",") }) .collect::() .join("\n"); println!("{}", string); ```

I have a similar issue, where I am calling `global::shutdown_tracer_provider();` from a panic hook. Though I don't know why it would hang there.

The requirement could perhaps be put in the type system. As in, the clients could have a separate type for the uninitialized state.

One design decision is whether to use the next url, or extracts the path from href and uses `api_get` (I currently do the former). The difference (which I can think...

This is essentially the logic part btw https://github.com/blueforesticarus/goontunes2/commit/034994bffbe3270ab9e812ac981e22c43c25d7cd

This would be very useful for me, especially if you could select specific ones to show like `[email protected]` and show them as regular columns (I like to use user.comment to...

Slightly different from this issue, but related and simpler: is there a way to merge entities. ie. *move* all components of entity A into entity B, and destroy entity A...

It would also be useful to be able to filter so the view only shows saved states.

I would add that this would be useful for blender based scene workflow. Currently adding AsyncCollider to a object would not work, since blender objects get turned into sub-scenes (iirc),...