当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust Concat用法及代码示例


本文简要介绍rust语言中 Trait alloc::slice::Concat 的用法。

用法

pub trait Concat<Item: ?Sized> {
    type Output;
    fn concat(slice: &Self) -> Self::Output;
}

[T]::concat 的助手特征。

注意:此特征中未使用 Item 类型参数,但它允许 impl 更加通用。如果没有它,我们会得到这个错误:

error[E0207]: the type parameter `T` is not constrained by the impl trait, self type, or predica
   --> src/liballoc/slice.rs:608:6
    |
608 | impl<T: Clone, V: Borrow<[T]>> Concat for [V] {
    |      ^ unconstrained type parameter

这是因为可能存在具有多个 Borrow<[_]> impls 的 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 }
}

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Trait alloc::slice::Concat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。