Lines Matching full:owned
22 /// Type used to immutably borrow a value that is currently foreign-owned.
25 /// Type used to mutably borrow a value that is currently foreign-owned.
28 /// Converts a Rust-owned object to a foreign-owned one.
41 /// Converts a foreign-owned object back to a Rust-owned one.
51 /// Tries to convert a foreign-owned object back to a Rust-owned one.
71 /// Borrows a foreign-owned object immutably.
73 /// This method provides a way to access a foreign-owned value from Rust immutably. It provides
74 /// you with exactly the same abilities as an `&Self` when the value is Rust-owned.
86 /// Borrows a foreign-owned object mutably.
88 /// This method provides a way to access a foreign-owned value from Rust mutably. It provides
89 /// you with exactly the same abilities as an `&mut Self` when the value is Rust-owned, except
397 /// Additionally, it allows users to convert from a shared reference `&T` to an owned reference
430 /// An owned reference to an always-reference-counted object.