Revert "Rename Owned*::to_ref() to as_ref()"

This reverts commit 5394faca16.
This commit is contained in:
Alex Orlenko
2023-03-30 22:35:43 +01:00
parent da6d5a93c9
commit f66932e8d2
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -747,8 +747,8 @@ pub struct OwnedAnyUserData(pub(crate) crate::types::LuaOwnedRef);
#[cfg(feature = "unstable")]
impl OwnedAnyUserData {
pub const fn as_ref(&self) -> AnyUserData {
AnyUserData(self.0.as_ref())
pub const fn to_ref(&self) -> AnyUserData {
AnyUserData(self.0.to_ref())
}
}