pub enum Boundary<Element> {
    ClippingAncestors,
    Element(Element),
    Elements(Vec<Element>),
}Variants§
Trait Implementations§
impl<Element> StructuralPartialEq for Boundary<Element>
Auto Trait Implementations§
impl<Element> Freeze for Boundary<Element>where
    Element: Freeze,
impl<Element> RefUnwindSafe for Boundary<Element>where
    Element: RefUnwindSafe,
impl<Element> Send for Boundary<Element>where
    Element: Send,
impl<Element> Sync for Boundary<Element>where
    Element: Sync,
impl<Element> Unpin for Boundary<Element>where
    Element: Unpin,
impl<Element> UnwindSafe for Boundary<Element>where
    Element: 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