EventClipboard represents data from the clipboard, in response to a GetClipboard request.
| 56 | // EventClipboard represents data from the clipboard, |
| 57 | // in response to a GetClipboard request. |
| 58 | type EventClipboard struct { |
| 59 | t time.Time |
| 60 | data []byte |
| 61 | } |
| 62 | |
| 63 | // Data returns the attached binary data. |
| 64 | func (ev *EventClipboard) Data() []byte { |
nothing calls this directly
no outgoing calls
no test coverage detected