Result
public enum Result : Equatable
Possible results returned for FTP commands
-
Unknown result.
Declaration
Swift
case unknown
-
Success.
Declaration
Swift
case success
-
Intermediate message showing progress.
Declaration
Swift
case next
-
Timeout.
Declaration
Swift
case timeout
-
Operation is already in progress.
Declaration
Swift
case busy
-
File IO operation error.
Declaration
Swift
case fileIoError
-
File exists already.
Declaration
Swift
case fileExists
-
File does not exist.
Declaration
Swift
case fileDoesNotExist
-
File is write protected.
Declaration
Swift
case fileProtected
-
Invalid parameter.
Declaration
Swift
case invalidParameter
-
Unsupported command.
Declaration
Swift
case unsupported
-
General protocol error.
Declaration
Swift
case protocolError
-
No system connected.
Declaration
Swift
case noSystem
-
Undocumented
Declaration
Swift
case UNRECOGNIZED(Int)