pub struct BatchClient<O>where
O: Observer,{
pub state: State,
pub range: (Point, Point),
pub observer: O,
}
Fields§
§state: State
§range: (Point, Point)
§observer: O
Implementations§
Trait Implementations§
Source§impl<O> Agent for BatchClient<O>where
O: Observer,
impl<O> Agent for BatchClient<O>where
O: Observer,
type Message = Message
fn is_done(&self) -> bool
fn has_agency(&self) -> bool
fn send_next(self, tx: &impl MachineOutput) -> Transition<Self>
fn receive_next(self, msg: Self::Message) -> Transition<Self>
Auto Trait Implementations§
impl<O> Freeze for BatchClient<O>where
O: Freeze,
impl<O> RefUnwindSafe for BatchClient<O>where
O: RefUnwindSafe,
impl<O> Send for BatchClient<O>where
O: Send,
impl<O> Sync for BatchClient<O>where
O: Sync,
impl<O> Unpin for BatchClient<O>where
O: Unpin,
impl<O> UnwindSafe for BatchClient<O>where
O: UnwindSafe,
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