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

sync: implement more traits for channel errors #5666

Merged
merged 4 commits into from May 3, 2023

Commits on May 2, 2023

  1. Update mpsc::error

    Update mpsc::error::{SendError<T>, TrySendError<T>, SendTimeoutError<T>} to match the errors from the std lib in their mpsc channel.
    
    Removed bond <T: Debug>.
    Add derived impl PartialEq, Eq, Clone and Copy (only if T implement them)
    GilShoshan94 committed May 2, 2023
    Configuration menu
    Copy the full SHA
    5753c9b View commit details
    Browse the repository at this point in the history
  2. Update watch::error

    Update watch::error::SendError<T> to match the error from the std lib in their mpsc channel (also a SendError).
    
    Removed bond <T: Debug>.
    Add derived impl PartialEq, Eq, Clone and Copy (only if T implement them)
    GilShoshan94 committed May 2, 2023
    Configuration menu
    Copy the full SHA
    c452bdb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ed1bdf7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    be71e7e View commit details
    Browse the repository at this point in the history