pub enum ActTarget {
Ref(Ref),
Mark(String),
}Expand description
What Engine::act targets on a page.
Variants§
Ref(Ref)
A live ref from the most recent snapshot.
Mark(String)
A persistent mark, identified by name.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ActTarget
impl RefUnwindSafe for ActTarget
impl Send for ActTarget
impl Sync for ActTarget
impl Unpin for ActTarget
impl UnsafeUnpin for ActTarget
impl UnwindSafe for ActTarget
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