pub enum Parent<'a, 'b, 'c> {
None,
Page(&'a Page),
Request(&'b Request),
Response(&'c Response),
}
Variants§
Auto Trait Implementations§
impl<'a, 'b, 'c> Freeze for Parent<'a, 'b, 'c>
impl<'a, 'b, 'c> RefUnwindSafe for Parent<'a, 'b, 'c>
impl<'a, 'b, 'c> Send for Parent<'a, 'b, 'c>
impl<'a, 'b, 'c> Sync for Parent<'a, 'b, 'c>
impl<'a, 'b, 'c> Unpin for Parent<'a, 'b, 'c>
impl<'a, 'b, 'c> UnwindSafe for Parent<'a, 'b, 'c>
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