Skip to main content

ResumableFrame

Struct ResumableFrame 

Source
pub struct ResumableFrame<D> { /* private fields */ }
Expand description

A surface-neutral, one-shot-completion resumable frame.

Implementations§

Source§

impl<D> ResumableFrame<D>

Source

pub fn new(limits: FrameLimits, driver: D) -> Self

Creates a frame driven by driver under explicit limits.

Source

pub fn is_complete(&self) -> bool

Returns whether the frame has returned or failed.

Source

pub fn resume<T, R, E>( &mut self, packet: ResumePacket<T, E>, ) -> Result<ResumeResult<T, R, E>, FrameError>
where D: FnMut(ResumePacket<T, E>, &mut StepBudget) -> Result<ResumeResult<T, R, E>, FrameError>,

Delivers one packet and returns the next observable transition.

Auto Trait Implementations§

§

impl<D> Freeze for ResumableFrame<D>
where D: Freeze,

§

impl<D> RefUnwindSafe for ResumableFrame<D>
where D: RefUnwindSafe,

§

impl<D> Send for ResumableFrame<D>
where D: Send,

§

impl<D> Sync for ResumableFrame<D>
where D: Sync,

§

impl<D> Unpin for ResumableFrame<D>
where D: Unpin,

§

impl<D> UnsafeUnpin for ResumableFrame<D>
where D: UnsafeUnpin,

§

impl<D> UnwindSafe for ResumableFrame<D>
where D: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.