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

stabilize the "ip" feature #66584

Closed
wants to merge 2 commits into from
Closed

Commits on Jan 12, 2020

  1. stabilize the "ip" feature and document stability guarantees

    Feature tracking issue: rust-lang#27709
    
    - Stabilize the following methods:
        - `IpAddr::is_global`
        - `IpAddr::is_documentation`
        - `Ipv4Addr::is_global`
        - `Ipv4addr::is_shared`
        - `Ipv4Addr::is_ietf_protocol_assignment`
        - `Ipv4addr::is_benchmarking`
        - `Ipv4Addr::is_reserved`
        - `Ipv6Addr::is_global`
        - `Ipv6Addr::is_unique_local`
        - `Ipv6Addr::is_unicast_link_local_strict`
        - `Ipv6Addr::is_unicast_link_local`
        - `Ipv6Addr::is_unicast_site_local`
        - `Ipv6Addr::is_documentation`
        - `Ipv6Addr::is_unicast_global`
        - `Ipv6Addr::multicast_scope`
    - Stabilize the following enum: `Ipv6MulticastScope`
    - Document IP helpers stability guarantees (fixes rust-lang#60239)
    little-dude committed Jan 12, 2020
    Configuration menu
    Copy the full SHA
    056bb4e View commit details
    Browse the repository at this point in the history
  2. std::net: add Ipv6Multicastscope variants

    Add variants for the currently reserved and un-assigned scopes. Since
    variants may be added in the future as new RFCs get published, we also
    make this enum #[non_exhaustive].
    
    Ref: rust-lang#66584 (comment)
    little-dude committed Jan 12, 2020
    Configuration menu
    Copy the full SHA
    edd607f View commit details
    Browse the repository at this point in the history