Skip to content

Commit a3252af

Browse files
bors[bot]Stjepan Glavina
and
Stjepan Glavina
committed
Merge #247
247: Remove Clone for Guard r=jeehoonkang a=stjepang While `Guard::clone()` is a nice convenience, it's not really a method we *need*. By removing the clone impl, we enable some kinds of API. For example, a data structure might want to return a `Guard` to the user and then retrieve it back knowing it has never been cloned. @Amanieu needs to forbid `Guard::clone()` in a certain use case. I don't remember the exact details, so perhaps he could comment what it is about. Co-authored-by: Stjepan Glavina <[email protected]>
2 parents f1478c9 + 290735b commit a3252af

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

crossbeam-epoch/src/guard.rs

-20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use core::fmt;
22
use core::mem;
3-
use core::ptr;
43

54
use atomic::Shared;
65
use collector::Collector;
@@ -65,15 +64,6 @@ use internal::Local;
6564
/// assert!(!epoch::is_pinned());
6665
/// ```
6766
///
68-
/// The same can be achieved by cloning guards:
69-
///
70-
/// ```
71-
/// use crossbeam_epoch as epoch;
72-
///
73-
/// let guard1 = epoch::pin();
74-
/// let guard2 = guard1.clone();
75-
/// ```
76-
///
7767
/// [`pin`]: fn.pin.html
7868
pub struct Guard {
7969
pub(crate) local: *const Local,
@@ -433,16 +423,6 @@ impl Drop for Guard {
433423
}
434424
}
435425

436-
impl Clone for Guard {
437-
#[inline]
438-
fn clone(&self) -> Guard {
439-
match unsafe { self.local.as_ref() } {
440-
None => Guard { local: ptr::null() },
441-
Some(local) => local.pin(),
442-
}
443-
}
444-
}
445-
446426
impl fmt::Debug for Guard {
447427
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
448428
f.pad("Guard { .. }")

0 commit comments

Comments
 (0)