Search code examples
Why do blanket implementations for two different traits conflict?...


rusttraits

Read More
Conflicting implementations of trait in Rust...


genericsrusttraits

Read More
Rust thinks argument is borrowed in the `impl Trait` return value and complains "borrowed value...


rusttraitslifetimeborrow-checker

Read More
How to implement a foreign trait with type parameters for a foreign type?...


rusterror-handlingtraits

Read More
Trying to understand Scala trait...


scalainterfacetraits

Read More
Rust trait cannot borrow as mutable more than once...


rusttraitslifetime

Read More
I implemented a trait for another trait but cannot call methods from both traits...


rusttraits

Read More
`impl Trait` return type causes wrong lifetime elision...


rusttraitslifetime

Read More
Can I use Deref<Target = Other> to inherit trait implementations from Other?...


rusttraits

Read More
Get pointer to overloaded function that would be called...


c++templatestraitsc++20

Read More
Using common part of supertrait and subtrait in struct...


rustiotraits

Read More
Why does an `impl Trait` return value implement Send while `Box<dyn Trait>` does not?...


rusttraits

Read More
PHP: dealing with traits with methods of same name...


phpclassinheritancescopetraits

Read More
How to declare a one-method trait...


scalatraits

Read More
Kotlin scope functions in Rust?...


rusttraits

Read More
How to implement the `From` trait for a generic type, and retrieve the internal generic type?...


rustinterfacetraits

Read More
Is Rust trait the same as Java interface...


rustinterfacetraits

Read More
Why must T be 'static when cloning into Rc<RefCell<dyn Trait>>?...


rusttraitslifetime

Read More
Scala 2 to Scala 3: Instantiating a trait no longer recognises new methods...


scalatraitsanonymous-classscala-3

Read More
How to write Rocket FromRequest implementation? Getting "lifetimes do not match method in trait...


rusttraitslifetimerust-rocket

Read More
Is there a way to prevent a struct from implementing a trait method?...


rusttraits

Read More
Rustlings Errors3.rs Convert From String Error - Trait Not Implemented for `std::string::String`...


rusttraits

Read More
How to unsafely get a concrete reference from a Box<dyn Trait>?...


pointersrustcastingtraits

Read More
Why are trait objects usually used via references (&dyn Trait) or smart Pointers (like Box<dy...


rusttraitstype-traitstrait-objects

Read More
In Rust, Why does generics needs to specify lifetime as `'static` when passed as an argument?...


genericsrusttraitslifetime

Read More
Why is 'impl Trait' syntax not working with two parameters?...


genericsrusttraits

Read More
Using Option<T> as associated type in trait that returns reference to it...


rusttraits

Read More
Why can't I specify a trait's subclass?...


scalatraits

Read More
How to fix Service trait error when using from_fn_with_state for middleware?...


rustmiddlewaretraitsrust-axum

Read More
How can I create an is_prime function that is generic over various integer types?...


rusttraits

Read More
BackNext