EBackend.CacheColumnInfo¶
Fields¶
Name |
Type |
Access |
Description |
---|---|---|---|
index_name |
r/w |
||
name |
r/w |
||
type |
r/w |
Methods¶
class |
|
class |
|
|
Details¶
- class EBackend.CacheColumnInfo¶
- classmethod free(info)¶
- Parameters:
info (
object
orNone
) – anEBackend.CacheColumnInfo
Frees the info structure, previously allocated with
EBackend.CacheColumnInfo.new
() orEBackend.CacheColumnInfo.copy
().New in version 3.26.
- classmethod new(name, type, index_name)¶
- Parameters:
- Returns:
A new
EBackend.CacheColumnInfo
. Free it withEBackend.CacheColumnInfo.free
() when no longer needed.- Return type:
New in version 3.26.
- copy()¶
- Returns:
Copy of the given self. Free it with
EBackend.CacheColumnInfo.free
() when no longer needed. If the self isNone
, then returnsNone
as well.- Return type:
New in version 3.26.