Enumeration Caseheckj.formic 0.3.0Formic
timeoutExceeded(cmd:)
Failure due to a command timeout exceeding.
case timeoutExceeded(cmd: (any Command))
Failure due to a command timeout exceeding.
case timeoutExceeded(cmd: (any Command))
s6Formic12CommandErrorO15timeoutExceededyAcA0B0_p_tcACmF
What are these?8I5PG
import Formic
๐ Swift library to support IT Automation tasks. ๐ ๐
enum CommandError
An error that occurs when running a command.
protocol Command : Hashable, Identifiable, Sendable
A type that represents a command, run locally or remotely.
case commandFailed(rc: Int32, errmsg: String)
Failure due to a command failing.
case missingSSHAccessCredentials(msg: String)
Failure due to missing SSH access credentials.
case failedToResolveHost(name: String)
Failure due to inability to resolve a host.
case noOutputToParse(msg: String)
Failure due to no output to parse.
case invalidCommand(msg: String)
Failure due to an invalid command.
case noOutputFromCommand(cmd: (any Command))
Failure due to no output from a command
case localUnsupported(msg: String)
Failure due to using a remote command with a local host.