1//! Overloadable operators.
2//!
3//! Implementing these traits allows you to overload certain operators.
4//!
5//! Some of these traits are imported by the prelude, so they are available in
6//! every Rust program. Only operators backed by traits can be overloaded. For
7//! example, the addition operator (`+`) can be overloaded through the [`Add`]
8//! trait, but since the assignment operator (`=`) has no backing trait, there
9//! is no way of overloading its semantics. Additionally, this module does not
10//! provide any mechanism to create new operators. If traitless overloading or
11//! custom operators are required, you should look toward macros to extend
12//! Rust's syntax.
13//!
14//! Implementations of operator traits should be unsurprising in their
15//! respective contexts, keeping in mind their usual meanings and
16//! [operator precedence]. For example, when implementing [`Mul`], the operation
17//! should have some resemblance to multiplication (and share expected
18//! properties like associativity).
19//!
20//! Note that the `&&` and `||` operators are currently not supported for
21//! overloading. Due to their short circuiting nature, they require a different
22//! design from traits for other operators like [`BitAnd`]. Designs for them are
23//! under discussion.
24//!
25//! Many of the operators take their operands by value. In non-generic
26//! contexts involving built-in types, this is usually not a problem.
27//! However, using these operators in generic code, requires some
28//! attention if values have to be reused as opposed to letting the operators
29//! consume them. One option is to occasionally use [`clone`].
30//! Another option is to rely on the types involved providing additional
31//! operator implementations for references. For example, for a user-defined
32//! type `T` which is supposed to support addition, it is probably a good
33//! idea to have both `T` and `&T` implement the traits [`Add<T>`][`Add`] and
34//! [`Add<&T>`][`Add`] so that generic code can be written without unnecessary
35//! cloning.
36//!
37//! # Examples
38//!
39//! This example creates a `Point` struct that implements [`Add`] and [`Sub`],
40//! and then demonstrates adding and subtracting two `Point`s.
41//!
42//! ```rust
43//! use std::ops::{Add, Sub};
44//!
45//! #[derive(Debug, Copy, Clone, PartialEq)]
46//! struct Point {
47//! x: i32,
48//! y: i32,
49//! }
50//!
51//! impl Add for Point {
52//! type Output = Self;
53//!
54//! fn add(self, other: Self) -> Self {
55//! Self {x: self.x + other.x, y: self.y + other.y}
56//! }
57//! }
58//!
59//! impl Sub for Point {
60//! type Output = Self;
61//!
62//! fn sub(self, other: Self) -> Self {
63//! Self {x: self.x - other.x, y: self.y - other.y}
64//! }
65//! }
66//!
67//! assert_eq!(Point {x: 3, y: 3}, Point {x: 1, y: 0} + Point {x: 2, y: 3});
68//! assert_eq!(Point {x: -1, y: -3}, Point {x: 1, y: 0} - Point {x: 2, y: 3});
69//! ```
70//!
71//! See the documentation for each trait for an example implementation.
72//!
73//! The [`Fn`], [`FnMut`], and [`FnOnce`] traits are implemented by types that can be
74//! invoked like functions. Note that [`Fn`] takes `&self`, [`FnMut`] takes `&mut
75//! self` and [`FnOnce`] takes `self`. These correspond to the three kinds of
76//! methods that can be invoked on an instance: call-by-reference,
77//! call-by-mutable-reference, and call-by-value. The most common use of these
78//! traits is to act as bounds to higher-level functions that take functions or
79//! closures as arguments.
80//!
81//! Taking a [`Fn`] as a parameter:
82//!
83//! ```rust
84//! fn call_with_one<F>(func: F) -> usize
85//! where F: Fn(usize) -> usize
86//! {
87//! func(1)
88//! }
89//!
90//! let double = |x| x * 2;
91//! assert_eq!(call_with_one(double), 2);
92//! ```
93//!
94//! Taking a [`FnMut`] as a parameter:
95//!
96//! ```rust
97//! fn do_twice<F>(mut func: F)
98//! where F: FnMut()
99//! {
100//! func();
101//! func();
102//! }
103//!
104//! let mut x: usize = 1;
105//! {
106//! let add_two_to_x = || x += 2;
107//! do_twice(add_two_to_x);
108//! }
109//!
110//! assert_eq!(x, 5);
111//! ```
112//!
113//! Taking a [`FnOnce`] as a parameter:
114//!
115//! ```rust
116//! fn consume_with_relish<F>(func: F)
117//! where F: FnOnce() -> String
118//! {
119//! // `func` consumes its captured variables, so it cannot be run more
120//! // than once
121//! println!("Consumed: {}", func());
122//!
123//! println!("Delicious!");
124//!
125//! // Attempting to invoke `func()` again will throw a `use of moved
126//! // value` error for `func`
127//! }
128//!
129//! let x = String::from("x");
130//! let consume_and_return_x = move || x;
131//! consume_with_relish(consume_and_return_x);
132//!
133//! // `consume_and_return_x` can no longer be invoked at this point
134//! ```
135//!
136//! [`clone`]: Clone::clone
137//! [operator precedence]: ../../reference/expressions.html#expression-precedence
138
139#![stable(feature = "rust1", since = "1.0.0")]
140
141mod arith;
142mod async_function;
143mod bit;
144mod control_flow;
145mod coroutine;
146mod deref;
147mod drop;
148mod function;
149mod index;
150mod index_range;
151mod range;
152mod try_trait;
153mod unsize;
154
155#[stable(feature = "rust1", since = "1.0.0")]
156pub use self::arith::{Add, Div, Mul, Neg, Rem, Sub};
157#[stable(feature = "op_assign_traits", since = "1.8.0")]
158pub use self::arith::{AddAssign, DivAssign, MulAssign, RemAssign, SubAssign};
159
160#[stable(feature = "rust1", since = "1.0.0")]
161pub use self::bit::{BitAnd, BitOr, BitXor, Not, Shl, Shr};
162#[stable(feature = "op_assign_traits", since = "1.8.0")]
163pub use self::bit::{BitAndAssign, BitOrAssign, BitXorAssign, ShlAssign, ShrAssign};
164
165#[stable(feature = "rust1", since = "1.0.0")]
166pub use self::deref::{Deref, DerefMut};
167
168#[unstable(feature = "deref_pure_trait", issue = "87121")]
169pub use self::deref::DerefPure;
170
171#[unstable(feature = "receiver_trait", issue = "none")]
172pub use self::deref::Receiver;
173
174#[stable(feature = "rust1", since = "1.0.0")]
175pub use self::drop::Drop;
176
177#[cfg(not(bootstrap))]
178pub(crate) use self::drop::fallback_surface_drop;
179
180#[stable(feature = "rust1", since = "1.0.0")]
181pub use self::function::{Fn, FnMut, FnOnce};
182
183#[unstable(feature = "async_fn_traits", issue = "none")]
184pub use self::async_function::{AsyncFn, AsyncFnMut, AsyncFnOnce};
185
186#[stable(feature = "rust1", since = "1.0.0")]
187pub use self::index::{Index, IndexMut};
188
189#[stable(feature = "rust1", since = "1.0.0")]
190pub use self::range::{Range, RangeFrom, RangeFull, RangeTo};
191
192pub(crate) use self::index_range::IndexRange;
193
194#[stable(feature = "inclusive_range", since = "1.26.0")]
195pub use self::range::{Bound, RangeBounds, RangeInclusive, RangeToInclusive};
196
197#[unstable(feature = "one_sided_range", issue = "69780")]
198pub use self::range::OneSidedRange;
199
200#[unstable(feature = "try_trait_v2", issue = "84277")]
201pub use self::try_trait::{FromResidual, Try};
202
203#[unstable(feature = "try_trait_v2_yeet", issue = "96374")]
204pub use self::try_trait::Yeet;
205
206#[unstable(feature = "try_trait_v2_residual", issue = "91285")]
207pub use self::try_trait::Residual;
208
209pub(crate) use self::try_trait::{ChangeOutputType, NeverShortCircuit};
210
211#[unstable(feature = "coroutine_trait", issue = "43122")]
212pub use self::coroutine::{Coroutine, CoroutineState};
213
214#[unstable(feature = "coerce_unsized", issue = "18598")]
215pub use self::unsize::CoerceUnsized;
216
217#[unstable(feature = "dispatch_from_dyn", issue = "none")]
218pub use self::unsize::DispatchFromDyn;
219
220#[unstable(feature = "control_flow_enum", reason = "new API", issue = "75744")]
221pub use self::control_flow::ControlFlow;
222