.. include:: headings.inc .. currentmodule:: lib.delayedresult .. highlight:: python .. _lib.delayedresult.Struct: ========================================================================================================================================== |phoenix_title| **Struct** ========================================================================================================================================== An object that has attributes built from the dictionary given in constructor. So ss=Struct(a=1, b='b') will satisfy assert ss.a == 1 and assert ss.b == 'b'. | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **Struct** .. raw:: html

Inheritance diagram of Struct

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~lib.delayedresult.Struct.__init__` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: Struct An object that has attributes built from the dictionary given in constructor. So ss=Struct(a=1, b='b') will satisfy assert ss.a == 1 and assert ss.b == 'b'. .. method:: __init__(self, \*\*kwargs)