Home
last modified time | relevance | path

Searched defs:concat (Results 1 – 2 of 2) sorted by relevance

/DragonOS/kernel/crates/intertrait/tests/ !
H A Don-trait-impl-assoc-type2.rs14 fn concat(&self, a: Self::I1, b: Self::I2) -> String; in concat() method
22 fn concat(&self, a: Self::I1, b: Self::I2) -> String { in concat() method
33 let concat = source.cast::<dyn Concat<I1 = i32, I2 = &'static str>>(); in test_cast_to_on_trait_impl_with_assoc_type2() localVariable
H A Don-trait-impl-assoc-type3.rs14 fn concat(&self, prefix: T, a: Self::I1, b: Self::I2) -> String; in concat() method
22 fn concat(&self, prefix: String, a: Self::I1, b: Self::I2) -> String { in concat() method
33 let concat = source.cast::<dyn Concat<String, I1 = i32, I2 = &'static str>>(); in test_cast_to_on_trait_impl_with_assoc_type3() localVariable