.. wxPython Phoenix documentation This file was generated by Phoenix's sphinx generator and associated tools, do not edit by hand. Copyright: (c) 2011-2020 by Total Control Software License: wxWindows License .. include:: headings.inc .. currentmodule:: wx.lib.delayedresult .. highlight:: python .. _wx.lib.delayedresult.Struct: ========================================================================================================================================== |phoenix_title| **wx.lib.delayedresult.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| Class Hierarchy ================================= .. raw:: html
Inheritance diagram for class Struct:
| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~wx.lib.delayedresult.Struct.__init__` Initialize self. See help(type(self)) for accurate signature. ================================================================================ ================================================================================ | |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) Initialize self. See help(type(self)) for accurate signature.