File tree Expand file tree Collapse file tree 4 files changed +20
-712
lines changed Expand file tree Collapse file tree 4 files changed +20
-712
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ use crate::*;
14
14
/// - Make [`ChildStdin`] an opaque type.
15
15
/// - Make [`ChildStdout`] an opaque type.
16
16
/// - Make [`ChildStderr`] an opaque type.
17
+ ///
18
+ /// ## Removed
19
+ /// - Type `Sftp`.
20
+ /// - Type `Mode`.
21
+ /// - Type `RemoteFile`.
22
+ /// - Associated function `Session::sftp`.
17
23
#[ doc( hidden) ]
18
24
pub mod unreleased { }
19
25
Original file line number Diff line number Diff line change @@ -172,9 +172,6 @@ pub use child::RemoteChild;
172
172
mod error;
173
173
pub use error:: Error ;
174
174
175
- mod sftp;
176
- pub use sftp:: { Mode , RemoteFile , Sftp } ;
177
-
178
175
#[ cfg( feature = "process-mux" ) ]
179
176
pub ( crate ) mod process_impl;
180
177
@@ -413,13 +410,6 @@ impl Session {
413
410
} )
414
411
}
415
412
416
- /// Prepare to perform file operations on the remote host.
417
- ///
418
- /// See [`Sftp`] for details on how to interact with the remote files.
419
- pub fn sftp ( & self ) -> Sftp < ' _ > {
420
- Sftp :: new ( self )
421
- }
422
-
423
413
/// Terminate the remote connection.
424
414
pub async fn close ( self ) -> Result < ( ) , Error > {
425
415
delegate ! ( self . 0 , imp, { imp. close( ) . await } )
You can’t perform that action at this time.
0 commit comments