pub enum Position {
Front,
Back,
}Expand description
Represents a position to connect a slot to in a group of slots.
Variants§
Front
A position at the front of a group. A slot connected at Position::Front be executed
before all other slots in the group that were present before it was conncted.
Back
A position at the back of a group. A slot connected at Position::Back be executed
after all other slots in the group that were present before it was conncted.
Auto Trait Implementations§
impl Freeze for Position
impl RefUnwindSafe for Position
impl Send for Position
impl Sync for Position
impl Unpin for Position
impl UnwindSafe for Position
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