Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an `Unserializable` type to utils #9379

Closed
wants to merge 4 commits into from
Closed

Commits on Jan 19, 2016

  1. ipc: Add `Unserializable` structure.

    This allows unifying the way we prevent the serialisation of things that
    can't be sent over IPC for their in-process nature.
    
    This is a proposed solution to things like:
    #9373
    
    Where something like the following can be used:
    
    ```rust
        Exit(Unserializable<Sender<()>>),
    ```
    emilio committed Jan 19, 2016
  2. Use the new `Unserializable` structure in canvas' `FromPaintMsg`.

    emilio committed Jan 19, 2016
  3. util: Add unit test for `Unserializable`

    emilio committed Jan 19, 2016
You can’t perform that action at this time.