pub struct At<B: Behavior> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<B, A, Ph, Sends, Br> Behavior for At<B>
impl<B, A, Ph, Sends, Br> Behavior for At<B>
type Addr = A
type Msg = <B as Behavior>::Msg
type Event = AtEvent<<B as Behavior>::Event>
type Sends = SendProduct<Sends, ServiceSends<ScheduleAt>>
type Ph = Ph
type Error = <B as Behavior>::Error
type Birth = Br
async fn init( &mut self, ) -> Result<Actions<<B as Behavior>::Addr, <B as Behavior>::Ph, SendProduct<<B as Behavior>::Sends, ServiceSends<ScheduleAt>>, <B as Behavior>::Birth>, B::Error>
async fn step( &mut self, event: Self::Event, ) -> Result<Actions<<B as Behavior>::Addr, <B as Behavior>::Ph, SendProduct<<B as Behavior>::Sends, ServiceSends<ScheduleAt>>, <B as Behavior>::Birth>, B::Error>
Auto Trait Implementations§
impl<B> Freeze for At<B>where
B: Freeze,
impl<B> RefUnwindSafe for At<B>where
B: RefUnwindSafe,
impl<B> Send for At<B>where
B: Send,
impl<B> Sync for At<B>where
B: Sync,
impl<B> Unpin for At<B>where
B: Unpin,
impl<B> UnsafeUnpin for At<B>where
B: UnsafeUnpin,
impl<B> UnwindSafe for At<B>where
B: 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