pub enum Gated<'a> {
Observer,
Bridge(&'a BridgeEntry),
}Expand description
What the gate resolved a probe to.
Variants§
Observer
A suite observer (read-only tools, ct-test, ct-each).
Bridge(&'a BridgeEntry)
A bridge entry; run with bridge_argv-adjusted arguments.
Auto Trait Implementations§
impl<'a> Freeze for Gated<'a>
impl<'a> RefUnwindSafe for Gated<'a>
impl<'a> Send for Gated<'a>
impl<'a> Sync for Gated<'a>
impl<'a> Unpin for Gated<'a>
impl<'a> UnsafeUnpin for Gated<'a>
impl<'a> UnwindSafe for Gated<'a>
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