Class: GirFFI::ErrorArgumentInfo
- Inherits:
-
Object
- Object
- GirFFI::ErrorArgumentInfo
- Defined in:
- lib/gir_ffi/error_argument_info.rb
Overview
Represents an error argument with the same interface as IArgumentInfo
Instance Method Summary collapse
- #argument_type ⇒ Object
- #caller_allocates? ⇒ Boolean
- #closure ⇒ Object
- #destroy ⇒ Object
- #direction ⇒ Object
- #name ⇒ Object
- #skip? ⇒ Boolean
Instance Method Details
#argument_type ⇒ Object
14 15 16 |
# File 'lib/gir_ffi/error_argument_info.rb', line 14 def argument_type @argument_type ||= ErrorTypeInfo.new end |
#caller_allocates? ⇒ Boolean
30 31 32 |
# File 'lib/gir_ffi/error_argument_info.rb', line 30 def caller_allocates? true end |
#closure ⇒ Object
22 23 24 |
# File 'lib/gir_ffi/error_argument_info.rb', line 22 def closure -1 end |
#destroy ⇒ Object
26 27 28 |
# File 'lib/gir_ffi/error_argument_info.rb', line 26 def destroy -1 end |
#direction ⇒ Object
10 11 12 |
# File 'lib/gir_ffi/error_argument_info.rb', line 10 def direction :error end |
#name ⇒ Object
18 19 20 |
# File 'lib/gir_ffi/error_argument_info.rb', line 18 def name '_error' end |
#skip? ⇒ Boolean
6 7 8 |
# File 'lib/gir_ffi/error_argument_info.rb', line 6 def skip? false end |