We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
View all comments
Feature gate: #![feature(bound_as_ref)]
#![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.
as_ref
as_mut
Option
impl<T> Bound<T> { pub fn as_ref(&self) -> Bound<&T>; pub fn as_mut(&mut self) -> Bound<&mut T>; }
View all comments
Feature gate:
#![feature(bound_as_ref)]This is a tracking issue for providing
as_refandas_muton bound. These methods mirror similar methods on theOptiontype.Public API
Steps / History
Unresolved Questions