am i just dumb or is rust really hard
i literally just started this project and already have to rewrite everything

@v_v Rust is really hard! Tons of nontrivial syntax, compile errors that take motivation preemptively, multiple interlocking concepts (references, lifetimes, ownership, traits, generics, pattern matching, async, concurrency), multiple paradigms (both functional and imperative as one prefers at any given moment)

It's easy to design oneself into a corner where one has to rewrite most things, whereas in other languages one can kinda budge more things in. I genuinely think this makes Rust an exercise in writing better software and worth learning though

@multisn8 actually not struggling too bad with core rust stuff, the compiler explains errors really well
docs for external libraries are pretty bad though, to the point that cloning the source and grepping for relevant keywords is faster