generated from skills/copilot-codespaces-vscode
-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestwontfixThis will not be worked onThis will not be worked on
Description
Make Ipv6Addr::is_unique_local
and Ipv6Addr::is_unicast_link_local
stable (+const).
Newly stable API:
impl Ipv6Addr {
// Newly stable under `ipv6_is_unique_local`
const fn is_unique_local(&self) -> bool;
// Newly stable under `ipv6_is_unique_local`
const fn is_unicast_link_local(&self) -> bool;
}
These stabilise a subset of the following tracking issue:
- #27709
I have looked and could not find any issues with is_unique_local
and is_unicast_link_local
. There is a well received comment calling for stabilisation of the latter function.
Both functions are well defined and consistent with implementations in other languages:
cc implementor @little-dude
(I can't find the original PR for is_unqiue_local
)
r? libs-api
@rustbot label +T-libs-api +needs-fcp
Originally posted by @umgefahren in rust-lang/rust#129238
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestwontfixThis will not be worked onThis will not be worked on