[][src]Struct sp_consensus::import_queue::buffered_link::BufferedLinkReceiver

pub struct BufferedLinkReceiver<B: BlockT> { /* fields omitted */ }

Implementations

impl<B: BlockT> BufferedLinkReceiver<B>[src]

pub fn poll_actions(
    &mut self,
    cx: &mut Context<'_>,
    link: &mut dyn Link<B>
) -> Result<(), ()>
[src]

Polls for the buffered link actions. Any enqueued action will be propagated to the link passed as parameter.

This method should behave in a way similar to Future::poll. It can register the current task and notify later when more actions are ready to be polled. To continue the comparison, it is as if this method always returned Poll::Pending.

Returns an error if the corresponding BufferedLinkSender has been closed.

pub fn close(&mut self)[src]

Close the channel.

Auto Trait Implementations

impl<B> !RefUnwindSafe for BufferedLinkReceiver<B>[src]

impl<B> Send for BufferedLinkReceiver<B> where
    <B as Block>::Hash: Send,
    <<B as Block>::Header as Header>::Number: Send
[src]

impl<B> Sync for BufferedLinkReceiver<B> where
    <B as Block>::Hash: Send,
    <<B as Block>::Header as Header>::Number: Send
[src]

impl<B> Unpin for BufferedLinkReceiver<B>[src]

impl<B> !UnwindSafe for BufferedLinkReceiver<B>[src]

Blanket Implementations

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

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

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

impl<T> CheckedConversion for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,