Infinoted.ParameterTypedValue¶
Fields¶
Name |
Type |
Access |
Description |
---|---|---|---|
type |
r/w |
The type of the parameter. |
|
value |
r/w |
The value of the parameter. |
Methods¶
class |
|
class |
|
|
Details¶
- class Infinoted.ParameterTypedValue¶
Holds the type and value of a parameter that can be passed to an infinoted plugin.
- classmethod free(data)¶
- Parameters:
data (
object
orNone
) – TheInfinoted.ParameterTypedValue
to free.
Frees an instance of
Infinoted.ParameterTypedValue
. Formally the argument is kept as a generic pointer so that this function can be used as aGLib.DestroyNotify
callback.Note that the
Infinoted.ParameterTypedValue
needs to be correctly initialized, i.e. its type must be set, before it can be freed.
- classmethod new()¶
- Returns:
A new
Infinoted.ParameterTypedValue
. Free withInfinoted.ParameterTypedValue.free
() when no longer needed.- Return type:
Creates a new instance of a InfinotedParameterTypedValue. The new instance will be uninitialized. Its type and value members need to be set before the object can be used or given to
Infinoted.ParameterTypedValue.free
().
- copy()¶
- Returns:
A new
Infinoted.ParameterTypedValue
. Free withInfinoted.ParameterTypedValue.free
() when no longer needed.- Return type:
Makes a dynamically allocated copy of self.