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

πŸ§‘β€πŸ’» zv, zn: Improve Str, Owned*Name, BusName Debug impls #450

Merged
merged 3 commits into from
Aug 22, 2023

Commits on Aug 19, 2023

  1. πŸ§‘β€πŸ’» zv: Improve Str Debug impl

    This makes Debug impls of Str transparent
    
    Before:
    
    Str(Static("foo"))
    
    After:
    
    "foo"
    SeaDve committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    7fef7a4 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. πŸ§‘β€πŸ’» zn: Improve Owned*Name Debug impls

    This makes Debug impls of Owned*Name transparent
    
    Before:
    
    Owned*Name(*Name("foo"))
    
    After:
    
    Owned*Name("foo")
    SeaDve committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    c9d0418 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2023

  1. πŸ§‘β€πŸ’» zn: Improve BusName Debug impl

    This makes Debug impl of BusName transparent
    
    Before:
    
    Unique(UniqueName("foo"))
    
    After:
    
    BusName::Unique("foo")
    SeaDve committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    813eb7a View commit details
    Browse the repository at this point in the history