Enum triomphe::ArcUnionBorrow
source · pub enum ArcUnionBorrow<'a, A: 'a, B: 'a> {
First(ArcBorrow<'a, A>),
Second(ArcBorrow<'a, B>),
}
Expand description
This represents a borrow of an ArcUnion
.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a, A, B> Freeze for ArcUnionBorrow<'a, A, B>
impl<'a, A, B> RefUnwindSafe for ArcUnionBorrow<'a, A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<'a, A, B> Send for ArcUnionBorrow<'a, A, B>
impl<'a, A, B> Sync for ArcUnionBorrow<'a, A, B>
impl<'a, A, B> Unpin for ArcUnionBorrow<'a, A, B>
impl<'a, A, B> UnwindSafe for ArcUnionBorrow<'a, A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
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