pub trait Concat<Item>where
Item: ?Sized,{
type Output;
// Required method
fn concat(slice: &Self) -> Self::Output;
}
🔬This is a nightly-only experimental API. (
slice_concat_trait
#27747)Expand description
[T]::concat
的辅助程序 trait。
Note: Item
类型参数未在此 trait 中使用,但它使 impls 更具泛型性。
没有它,我们将收到此错误:
error[E0207]: the type parameter `T` is not constrained by the impl trait, self type, or predica
--> library/alloc/src/slice.rs:608:6
|
608 | impl<T: Clone, V: Borrow<[T]>> Concat for [V] {
| ^ unconstrained type parameter
这是因为可能存在具有多个 Borrow<[_]>
表示的 V
类型,因此将应用多个 T
类型:
pub struct Foo(Vec<u32>, Vec<String>);
impl std::borrow::Borrow<[u32]> for Foo {
fn borrow(&self) -> &[u32] { &self.0 }
}
impl std::borrow::Borrow<[String]> for Foo {
fn borrow(&self) -> &[String] { &self.1 }
}
Run