[][src]Struct rettle::brewery::Brewery

pub struct Brewery { /* fields omitted */ }

Struct holding the Array of Brewers and sender to push Tea Orders out to them.

Methods

impl Brewery[src]

pub fn new(size: usize, start_time: Instant) -> Brewery[src]

Creates new Brewery with Brewers and sender/receiver pair for passing jobs to them.

Arguments

  • size - number of brewers to instantiate
  • start_time - program start time to expose runtime metrics

pub fn take_order<F>(&self, f: F) where
    F: FnOnce() + Send + 'static, 
[src]

Send function (job) with batch of Tea with Recipe to Brewers.

Arguments

  • f - function to send off to Brewers

pub fn get_brewer_info(&self)[src]

Get info method to display number of Brewers assigned to Brewery.

Trait Implementations

impl Drop for Brewery[src]

Auto Trait Implementations

impl !Sync for Brewery

impl Send for Brewery

impl Unpin for Brewery

impl !RefUnwindSafe for Brewery

impl !UnwindSafe for Brewery

Blanket Implementations

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.

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

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

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