pub enum Edge {
Left,
Right,
Top,
Bottom,
}Expand description
Represents the side of a frame where a child frame can be added.
Variants§
Left
Left side of the frame
Right
Right side of the frame
Top
Top side of the frame
Bottom
Bottom side of the frame
Trait Implementations§
impl Copy for Edge
Auto Trait Implementations§
impl Freeze for Edge
impl RefUnwindSafe for Edge
impl Send for Edge
impl Sync for Edge
impl Unpin for Edge
impl UnwindSafe for Edge
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