Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in traits

`impl Trait` return type causes wrong lifetime elision

rust traits lifetime

Trait with function without "self" as parameter cannot be made into an object

rust traits

Is it possible to have an optional generic type for a trait?

How can I satisfy the `Sum<T>` trait requirement for f32?

generics rust iterator traits

Can I define a trait with a type parameter of itself in Rust?

rust traits

Get pointer to overloaded function that would be called

c++ templates traits c++20

What's the meaning of bounding a trait by its own generic lifetime (trait Bar<'a>: 'a)?

generics rust traits lifetime

How can I return a trait from an implementation so I can chain calls?

rust traits

Rust: conditional trait inheritance

rust traits

How do I stub out an impl Trait-returning function?

rust traits

Why does &str::from(...) not create a String?

rust traits

Why aren't traits Sized by default?

rust traits language-design

How to have a public trait with a pub(crate) method in a library?

rust visibility traits

Foo does not take parameters compile error in Scala?

scala function methods traits

Why doesn't visibility affect Rust's orphan rule?

rust traits orphan-rule

How impl &dyn trait bounds for generics?

rust traits

I get a expected type parameter, even though I think I have returned the correct type data

types rust traits

Can a struct implement two traits with conflicting method names in Rust? [duplicate]

rust traits

How to deal with `the trait cannot be made into an object` error in rust? Which traits are object-safe and which ain't?

rust compiler-errors traits

How to prevent autoimplementation of Sync