pub struct TipFinder {
pub state: State,
pub wellknown_point: Point,
pub output: Option<Tip>,
}Fields§
§state: State§wellknown_point: Point§output: Option<Tip>Implementations§
Trait Implementations§
Source§impl Agent for TipFinder
impl Agent for TipFinder
type Message = Message<NoopContent>
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 Freeze for TipFinder
impl RefUnwindSafe for TipFinder
impl Send for TipFinder
impl Sync for TipFinder
impl Unpin for TipFinder
impl UnwindSafe for TipFinder
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