TableImage is a TableValue that represents an Image. Ownership of the Image is not copied; you must keep it alive alongside the TableImage.
| 25 | // of the Image is not copied; you must keep it alive alongside the |
| 26 | // TableImage. |
| 27 | type TableImage struct { |
| 28 | I *Image |
| 29 | } |
| 30 | |
| 31 | func (i TableImage) toLibui() *C.uiTableValue { |
| 32 | return C.uiNewTableValueImage(i.I.i) |
nothing calls this directly
no outgoing calls
no test coverage detected