Result
public enum Result : Equatable
Possible results returned for camera commands
-
Unknown result.
Declaration
Swift
case unknown -
Command executed successfully.
Declaration
Swift
case success -
Command in progress.
Declaration
Swift
case inProgress -
Camera is busy and rejected command.
Declaration
Swift
case busy -
Camera denied the command.
Declaration
Swift
case denied -
An error has occurred while executing the command.
Declaration
Swift
case error -
Command timed out.
Declaration
Swift
case timeout -
Command has wrong argument(s).
Declaration
Swift
case wrongArgument -
No system connected.
Declaration
Swift
case noSystem -
Undocumented
Declaration
Swift
case UNRECOGNIZED(Int)
View on GitHub
Install in Dash
Result Enumeration Reference