Sök…


Deklaration

// Generic types are declared using the <T> annotation

struct GenericType<T> {
    pub item: T
}

enum QualityChecked<T> {
    Excellent(T),
    Good(T),
    // enum fields can be generics too
    Mediocre { product: T }
}

instansiering

// explicit type declaration
let some_value: Option<u32> = Some(13);

// implicit type declaration
let some_other_value = Some(66);

Parametrar för flera typer

Generiktyper kan ha mer än en typparametrar, t.ex. Result definieras så här:

pub enum Result<T, E> {
    Ok(T),
    Err(E),
}

Avgränsade generiska typer

// Only accept T and U generic types that also implement Debug
fn print_objects<T: Debug, U: Debug>(a: T, b: U) {
    println!("A: {:?} B: {:?}", a, b);
}

print_objects(13, 44);
// or annotated explicitly
print_objects::<usize, u16>(13, 44);

Gränserna måste täcka all användning av typen. Tillägg görs av std::ops::Add egenskap, som har in- och utgångsparametrar själv. where T: std::ops::Add<u32,Output=U> att det är möjligt att Add T till u32 , och detta tillägg måste producera typ U

fn try_add_one<T, U>(input_value: T) -> Result<U, String> 
    where T: std::ops::Add<u32,Output=U> 
{
    return Ok(input_value + 1);
}

Sized impliceras som standard. ?Sized tillåter oändliga typer också.

Generiska funktioner

Generiska funktioner tillåter att några eller alla deras argument parametreras.

fn convert_values<T, U>(input_value: T) -> Result<U, String> {
  // Try and convert the value.
  // Actual code will require bounds on the types T, U to be able to do something with them.
}

Om kompilatorn inte kan sluta sig till typparametern kan den levereras manuellt vid samtal:

let result: Result<u32, String> = convert_value::<f64, u32>(13.5);


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow