LaunchResultType

Type Alias LaunchResultType 

Source
pub type LaunchResultType = RvResult<(JoinHandle<RvResult<()>>, Receiver<RvResult<String>>)>;

Aliased Type§

pub enum LaunchResultType {
    Ok((JoinHandle<Result<(), RvError>>, Receiver<Result<String, RvError>>)),
    Err(RvError),
}

Variants§

§1.0.0

Ok((JoinHandle<Result<(), RvError>>, Receiver<Result<String, RvError>>))

Contains the success value

§1.0.0

Err(RvError)

Contains the error value