File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -739,12 +739,6 @@ impl AnyUserData {
739
739
self . nth_user_value ( 1 )
740
740
}
741
741
742
- #[ doc( hidden) ]
743
- #[ deprecated( since = "0.9.0" , note = "please use `user_value` instead" ) ]
744
- pub fn get_user_value < V : FromLua > ( & self ) -> Result < V > {
745
- self . nth_user_value ( 1 )
746
- }
747
-
748
742
/// Sets an associated `n`th value to this `AnyUserData`.
749
743
///
750
744
/// The value may be any Lua value whatsoever, and can be retrieved with [`nth_user_value`].
@@ -818,12 +812,6 @@ impl AnyUserData {
818
812
}
819
813
}
820
814
821
- #[ doc( hidden) ]
822
- #[ deprecated( since = "0.9.0" , note = "please use `nth_user_value` instead" ) ]
823
- pub fn get_nth_user_value < V : FromLua > ( & self , n : usize ) -> Result < V > {
824
- self . nth_user_value ( n)
825
- }
826
-
827
815
/// Sets an associated value to this `AnyUserData` by name.
828
816
///
829
817
/// The value can be retrieved with [`named_user_value`].
@@ -880,12 +868,6 @@ impl AnyUserData {
880
868
}
881
869
}
882
870
883
- #[ doc( hidden) ]
884
- #[ deprecated( since = "0.9.0" , note = "please use `named_user_value` instead" ) ]
885
- pub fn get_named_user_value < V : FromLua > ( & self , name : & str ) -> Result < V > {
886
- self . named_user_value ( name)
887
- }
888
-
889
871
/// Returns a metatable of this `UserData`.
890
872
///
891
873
/// Returned [`UserDataMetatable`] object wraps the original metatable and
You can’t perform that action at this time.
0 commit comments