Expand description
Re-exports§
pub use borrow::ToOwned;
Structs§
- String
Stub - A stub for
String
used inno_std
environments. - VecStub
- A stub for
Vec<T>
used inno_std
environments.
Enums§
- Is
- Represents an owned, immutably borrowed, or mutably borrowed data.
- IsCow
- Represents an owned or an immutably borrowed data.
- IsMut
- Represents an owned or a mutably borrowed data.
Traits§
- AsIs
- Used to do a cheap conversion into
Is<'a, T>
in generic contexts. - AsIsMut
- Used to do a cheap conversion into
IsMut<'a, T>
in generic contexts. - Borrow
AsIs - Immutably borrows the primary borrow target as
Is
. - Borrow
MutAs Is - Mutably borrows the primary borrow target as
Is
. - ToOwned
Mut ToOwned
types that can be mutably borrowed fromOwned
.
Type Aliases§
- Owned
- The owned type associated through
BorrowAsIs
andToOwned
.