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 9 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 19 def direction :return end
name()
click to toggle source
# File lib/gir_ffi/return_value_info.rb, line 23 def name nil end
skip?()
click to toggle source
# File lib/gir_ffi/return_value_info.rb, line 15 def skip? @skip end