Eternal
Results
2
issues of
Eternal
# The Upload code of Core ```rust fn test() { let mut buffer = Vec::new(); let mut f = fs::File::open(src).unwrap(); let mut reader = f .read_to_end(&mut buffer) .map(|_| Cursor::new(buffer)) .map_err(FtpError::ConnectionError)?;...
bug
# Example ```rust use e_services::ftp::Ftp; fn test() -> Result { let mut ftp = Ftp::connect(FtpInfo { host: "192.168.127.7", uname: "ftpdata", passwd: "F%0D@ta", port: 21, })?; ftp.login()?; let pwd = ftp.pwd()?;...