pub struct Internal<Parent, Value> {
pub parent: Parent,
pub value: Value,
}
Fields§
§parent: Parent
§value: Value
Trait Implementations§
Auto Trait Implementations§
impl<Parent, Value> RefUnwindSafe for Internal<Parent, Value>where
Parent: RefUnwindSafe,
Value: RefUnwindSafe,
impl<Parent, Value> Send for Internal<Parent, Value>
impl<Parent, Value> Sync for Internal<Parent, Value>
impl<Parent, Value> Unpin for Internal<Parent, Value>
impl<Parent, Value> UnwindSafe for Internal<Parent, Value>where
Parent: UnwindSafe,
Value: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more