-
-
Save Cynede/30c8b22cb57fd6eeb520cf7f2571d11c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rental! { | |
| pub mod rentals { | |
| use super::*; | |
| #[rental_mut] | |
| pub struct SSHSession { | |
| session: Box<ssh2::Session>, | |
| channel: &'session ssh2::Channel<'session>, | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment