8 lines
125 B
Rust
8 lines
125 B
Rust
use std::thread::Result;
|
|
|
|
pub trait Service {
|
|
type JoinReturnType;
|
|
|
|
fn join(self) -> Result<Self::JoinReturnType>;
|
|
}
|