本文简要介绍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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。