class GirFFI::ErrorArgumentInfo

Represents an error argument with the same interface as IArgumentInfo

Public Instance Methods

argument_type() click to toggle source
# File lib/gir_ffi/error_argument_info.rb, line 14
def argument_type
  @argument_type ||= ErrorTypeInfo.new
end
caller_allocates?() click to toggle source
# File lib/gir_ffi/error_argument_info.rb, line 26
def caller_allocates?
  true
end
closure() click to toggle source
# File lib/gir_ffi/error_argument_info.rb, line 22
def closure
  -1
end
direction() click to toggle source
# File lib/gir_ffi/error_argument_info.rb, line 10
def direction
  :error
end
name() click to toggle source
# File lib/gir_ffi/error_argument_info.rb, line 18
def name
  '_error'
end
skip?() click to toggle source
# File lib/gir_ffi/error_argument_info.rb, line 6
def skip?
  false
end