Struct differential_dataflow::operators::arrange::agent::ShutdownButton[][src]

pub struct ShutdownButton<T> { /* fields omitted */ }

Wrapper than can drop shared references.

Implementations

impl<T> ShutdownButton<T>[src]

pub fn new(reference: Rc<RefCell<Option<T>>>, activator: Activator) -> Self[src]

Creates a new ShutdownButton.

pub fn press(&mut self)[src]

Push the shutdown button, dropping the shared objects.

pub fn press_on_drop(self) -> ShutdownDeadmans<T>[src]

Hotwires the button to one that is pressed if dropped.

Auto Trait Implementations

impl<T> !RefUnwindSafe for ShutdownButton<T>

impl<T> !Send for ShutdownButton<T>

impl<T> !Sync for ShutdownButton<T>

impl<T> Unpin for ShutdownButton<T>

impl<T> !UnwindSafe for ShutdownButton<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.