本文简要介绍rust语言中 Trait std::ops::Sub
的用法。
用法
pub trait Sub<Rhs = Self> {
type Output;
fn sub(self, rhs: Rhs) -> Self::Output;
}
减法运算符 -
。
请注意,Rhs
默认为 Self
,但这不是强制性的。例如, std::time::SystemTime
实现了 Sub<Duration>
,它允许 SystemTime = SystemTime - Duration
形式的操作。
例子
Sub
易处理点
use std::ops::Sub;
#[derive(Debug, Copy, Clone, PartialEq)]
struct Point {
x: i32,
y: i32,
}
impl Sub for Point {
type Output = Self;
fn sub(self, other: Self) -> Self::Output {
Self {
x: self.x - other.x,
y: self.y - other.y,
}
}
}
assert_eq!(Point { x: 3, y: 3 } - Point { x: 2, y: 3 },
Point { x: 1, y: 0 });
使用泛型实现Sub
这是使用泛型实现 Sub
特征的相同 Point
结构的示例。
use std::ops::Sub;
#[derive(Debug, PartialEq)]
struct Point<T> {
x: T,
y: T,
}
// Notice that the implementation uses the associated type `Output`.
impl<T: Sub<Output = T>> Sub for Point<T> {
type Output = Self;
fn sub(self, other: Self) -> Self::Output {
Point {
x: self.x - other.x,
y: self.y - other.y,
}
}
}
assert_eq!(Point { x: 2, y: 3 } - Point { x: 1, y: 0 },
Point { x: 1, y: 3 });
相关用法
- Rust SubAssign.sub_assign用法及代码示例
- Rust SubAssign用法及代码示例
- Rust Sub.sub用法及代码示例
- Rust String.try_reserve用法及代码示例
- Rust Saturating.reverse_bits用法及代码示例
- Rust SyncSender.send用法及代码示例
- Rust Seek.stream_len用法及代码示例
- Rust SplitNMut用法及代码示例
- Rust SocketAddrV6.ip用法及代码示例
- Rust Shl.shl用法及代码示例
- Rust SyncOnceCell用法及代码示例
- Rust Split.as_str用法及代码示例
- Rust String.insert_str用法及代码示例
- Rust String.into_raw_parts用法及代码示例
- Rust SocketAddr.port用法及代码示例
- Rust SocketAncillary.add_fds用法及代码示例
- Rust SocketAddr.as_abstract_namespace用法及代码示例
- Rust SocketAddr.as_pathname用法及代码示例
- Rust Stdio.piped用法及代码示例
- Rust SocketAncillary.clear用法及代码示例
- Rust String.extend_from_within用法及代码示例
- Rust SyncLazy用法及代码示例
- Rust Shr.shr用法及代码示例
- Rust String.clear用法及代码示例
- Rust Saturating.signum用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Trait std::ops::Sub。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。