Class: Lich::Main::BindAddressOption::Result

Inherits:
Struct
  • Object
show all
Defined in:
documented/main/bind_address_option.rb

Overview

The outcome of applying the option: host is the concrete address to store back (nil when no --bind-address was given), warning is advisory text to surface once, error is fatal text (unresolvable keyword) -- the caller decides how to exit.

Since:

  • 5.19.2

Instance Attribute Summary collapse

Instance Attribute Details

#errorObject

Returns the value of attribute error

Returns:

  • (Object)

    the current value of error



25
26
27
# File 'documented/main/bind_address_option.rb', line 25

def error
  @error
end

#hostObject

Returns the value of attribute host

Returns:

  • (Object)

    the current value of host



25
26
27
# File 'documented/main/bind_address_option.rb', line 25

def host
  @host
end

#warningObject

Returns the value of attribute warning

Returns:

  • (Object)

    the current value of warning



25
26
27
# File 'documented/main/bind_address_option.rb', line 25

def warning
  @warning
end