-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Open
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Description
Feature gate: #![feature(bound_as_ref)]
This is a tracking issue for providing as_ref
and as_mut
on bound. These methods mirror similar methods on the Option
type.
Public API
impl<T> Bound<T> {
pub fn as_ref(&self) -> Bound<&T>;
pub fn as_mut(&mut self) -> Bound<&mut T>;
}
Steps / History
- Implementation: Add as_ref and as_mut methods for Bound #80444
- Final commenting period (FCP)
- Stabilization PR
Unresolved Questions
- None yet.
kpozin, sanpii, luaneko and joseluis
Metadata
Metadata
Assignees
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.