class GirFFI::ReturnValueInfo

Represents a return value with the same interface as IArgInfo

Attributes

argument_type[R]
ownership_transfer[R]

Public Class Methods

new(type, ownership_transfer, skip) click to toggle source
# File lib/gir_ffi/return_value_info.rb, line 8
def initialize(type, ownership_transfer, skip)
  @argument_type = type
  @ownership_transfer = ownership_transfer
  @skip = skip
end

Public Instance Methods

direction() click to toggle source
# File lib/gir_ffi/return_value_info.rb, line 18
def direction
  :return
end
name() click to toggle source
# File lib/gir_ffi/return_value_info.rb, line 22
def name
  nil
end
skip?() click to toggle source
# File lib/gir_ffi/return_value_info.rb, line 14
def skip?
  @skip
end