Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Commit 2ddffc0

Browse files
committed
Derive Copy/Clone/Debug/PartialEq/Eq for Continue
1 parent d778e3a commit 2ddffc0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/source.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ unsafe impl Sync for Pid {}
5454
/// `Continue(true)` keeps the closure assigned, to be rerun when appropriate.
5555
///
5656
/// `Continue(false)` disconnects and drops it.
57+
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
5758
pub struct Continue(pub bool);
5859

5960
impl ToGlib for Continue {

0 commit comments

Comments
 (0)