Content-Length: 24185 | pFad | https://doc.rust-lang.org/std/string/../error/../string/../vec/../../error_codes/./E0191.html

E0191 - Error codes index

Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error code E0191

An associated type wasn’t specified for a trait object.

Erroneous code example:

#![allow(unused)]
fn main() {
trait Trait {
    type Bar;
}

type Foo = dyn Trait; // error: the value of the associated type `Bar` (from
                      //        the trait `Trait`) must be specified
}

Trait objects need to have all associated types specified. Please verify that all associated types of the trait were specified and the correct trait was used. Example:

#![allow(unused)]
fn main() {
trait Trait {
    type Bar;
}

type Foo = dyn Trait<Bar=i32>; // ok!
}








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://doc.rust-lang.org/std/string/../error/../string/../vec/../../error_codes/./E0191.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy