當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。