Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Why do I need to implement `From` for both a value and a reference? Shouldn't methods be automatically dereferenced or borrowed?

Rust loop performance same as python [duplicate]

Is there any way to remove None fields in a struct serialized with serde?

rust serde

Rust and PostgreSQL with tokio_postgres

Can I disable a dev-dependency feature for release mode?

rust rust-cargo

why Path.ends_with return false when passed a correctly-matching file extension?

rust

Writing a generic swap function

rust

How to modify a component in Bevy when using get_single()?

rust bevy

Is it safe to transmute::<&'a Arc<T>, &'a Weak<T>>(…)?

rust unsafe

How to return a single owned record with Diesel?

rust rust-diesel

General protection fault when a Rust function called from assembly code accesses shared memory

rust code-generation jit ffi

What is the purpose of rustc-std-workspace-core crate?

rust rust-crates

Cannot call non-const fn `<Foo as Default>::default` in constants

println!() only if object implements Debug trait

rust

How to map over only the Some() values in an iterator?

rust

How to select or join futures with different types?

rust

Lazy evaluation in Rust

rust lazy-evaluation

Trait binding lifetimes of Futures to fn arguments

rust traits

Is there an easy way to cast entire tuples of scalar values at once?

rust

Why the result of `Regex::new` cannot be assigned to a constant?

rust