Expand description
Re-exports§
pub use borrow::ToOwned;
Structs§
- String
Stub - A stub for
Stringused inno_stdenvironments. - VecStub
- A stub for
Vec<T>used inno_stdenvironments.
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 ToOwnedtypes that can be mutably borrowed fromOwned.
Type Aliases§
- Owned
- The owned type associated through
BorrowAsIsandToOwned.