Class: GObjectIntrospection::IUnionInfo

Inherits:
IRegisteredTypeInfo show all
Defined in:
lib/ffi-gobject_introspection/i_union_info.rb

Overview

Wraps a GIUnionInfo struct. Represents a union.

Instance Method Summary collapse

Methods inherited from IRegisteredTypeInfo

#g_type, #type_init, #type_name

Methods inherited from IBaseInfo

#==, build_array_method, build_finder_method, #container, #deprecated?, #info_type, #initialize, make_finalizer, #name, #namespace, #safe_namespace, #to_ptr, wrap

Constructor Details

This class inherits a constructor from GObjectIntrospection::IBaseInfo

Instance Method Details

#alignmentObject



35
36
37
# File 'lib/ffi-gobject_introspection/i_union_info.rb', line 35

def alignment
  Lib.g_union_info_get_alignment @gobj
end

#field(index) ⇒ Object



9
10
11
# File 'lib/ffi-gobject_introspection/i_union_info.rb', line 9

def field index
  IFieldInfo.wrap(Lib.g_union_info_get_field @gobj, index)
end

#find_method(name) ⇒ Object



27
28
29
# File 'lib/ffi-gobject_introspection/i_union_info.rb', line 27

def find_method name
  IFunctionInfo.wrap(Lib.g_union_info_find_method @gobj, name)
end

#get_method(index) ⇒ Object



20
21
22
# File 'lib/ffi-gobject_introspection/i_union_info.rb', line 20

def get_method index
  IFunctionInfo.wrap(Lib.g_union_info_get_method @gobj, index)
end

#get_n_methodsObject



16
17
18
# File 'lib/ffi-gobject_introspection/i_union_info.rb', line 16

def get_n_methods
  Lib.g_union_info_get_n_methods @gobj
end

#n_fieldsObject



5
6
7
# File 'lib/ffi-gobject_introspection/i_union_info.rb', line 5

def n_fields
  Lib.g_union_info_get_n_fields @gobj
end

#sizeObject



31
32
33
# File 'lib/ffi-gobject_introspection/i_union_info.rb', line 31

def size
  Lib.g_union_info_get_size @gobj
end