本文簡要介紹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 Condvar.notify_all用法及代碼示例
- Rust Condvar.wait用法及代碼示例
- Rust Condvar.wait_timeout用法及代碼示例
- Rust Condvar.wait_timeout_while用法及代碼示例
- Rust ControlFlow用法及代碼示例
- Rust ControlFlow.break_value用法及代碼示例
- Rust Condvar.wait_while用法及代碼示例
- Rust Condvar.new用法及代碼示例
- Rust Condvar用法及代碼示例
- Rust Condvar.notify_one用法及代碼示例
- Rust ControlFlow.is_break用法及代碼示例
- Rust Condvar.wait_timeout_ms用法及代碼示例
- Rust ControlFlow.is_continue用法及代碼示例
- Rust Command.args用法及代碼示例
- Rust Cow.is_owned用法及代碼示例
- Rust Cow用法及代碼示例
- Rust Command.env用法及代碼示例
- Rust Command.env_remove用法及代碼示例
- Rust Command.get_args用法及代碼示例
- Rust Command.stdout用法及代碼示例
- Rust Command.stdin用法及代碼示例
- Rust Components用法及代碼示例
- Rust Component.as_os_str用法及代碼示例
- Rust Command.current_dir用法及代碼示例
- Rust Command.output用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Trait alloc::slice::Concat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。