Skip to content

Commit 24c1b73

Browse files
Implement Termination for Option<T: Termination>
1 parent 02f5786 commit 24c1b73

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/libstd/process.rs

+10
Original file line numberDiff line numberDiff line change
@@ -1625,6 +1625,16 @@ impl<E: fmt::Debug> Termination for Result<(), E> {
16251625
}
16261626
}
16271627

1628+
#[unstable(feature = "termination_trait_lib", issue = "43301")]
1629+
impl<T: Termination> Termination for Option<T> {
1630+
fn report(self) -> i32 {
1631+
match self {
1632+
Some(v) => v.report(),
1633+
None => 1,
1634+
}
1635+
}
1636+
}
1637+
16281638
#[unstable(feature = "termination_trait_lib", issue = "43301")]
16291639
impl Termination for ! {
16301640
fn report(self) -> i32 { self }

0 commit comments

Comments
 (0)