rollo-b2c2

Results 7 issues of rollo-b2c2

How can I create a Singleton object based on a generator? For example ``` def session_factory(connection): with connection() as conn: session = Session(bind=conn) yield session try: session.commit() except: session.rollback() finally:...

question

I was looking at the implementation of use store and I saw it used a threadlocal to do the global state. If a component is dismounted, and it’s the only...

#### Description This allows you to import layout_test into your crates as described in the docs. As you can't import things behind `#[cfg(test)]`. https://yew.rs/docs/more/testing I think this was the _intent_...

Appreciate this might be quite difficult to do: If you want to pass around a builder you have to specify the state of the builder: ```rust #[bon::builder] pub struct T...

feature request

https://github.com/paupino/rust-decimal/issues/727 Sorry, I know this is failing. Haven't had the chance to build it. Will put the function in the right place when I get a chance. But will take...

Hey this is a bit of an ergonomic issue, `to_f64` returns an option, but it's actually infallible. I can see this is a bit of a legacy wart of the...

I was trying to add eserde support to the deserializer and realized I couldn't without a public serializer.