pub trait TryIntoOutput<O>: Sized {
    // Required method
    fn try_into_output(self) -> Result<O, Self>;
}

Required Methods§

source

fn try_into_output(self) -> Result<O, Self>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<O> TryIntoOutput<O> for SwarmEvent<O>

source§

fn try_into_output(self) -> Result<O, Self>

source§

impl<TBehaviourOutEvent> TryIntoOutput<SwarmEvent<TBehaviourOutEvent>> for SwarmEvent<TBehaviourOutEvent>

source§

fn try_into_output(self) -> Result<SwarmEvent<TBehaviourOutEvent>, Self>

Implementors§