1 2 3 4 5 6 7 8 9 10 11 12
Enum FtpPathType { directory, file, linc, } Struct FtpPath { home: String, absolute_path: String, path_type: FtpPathType, }