pub trait PartialBorrow {
type All_Mut;
type All_Const;
type All_No;
type Fields;
const FIELDS: Self::Fields;
}Expand description
Helper trait (types that can be partially borrowed).
This is used by the partial!() macro,
to construct type expressions that name particular borrowing sets.
You probably don’t want to use this trait directly.
This trait will be derived. You probably don’t want to implement it.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.