ServerManagerResult

Type Alias ServerManagerResult 

Source
pub type ServerManagerResult = Result<(), Box<dyn Error>>;
Expand description

Result type for server management operations.

Aliased Type§

pub enum ServerManagerResult {
    Ok(()),
    Err(Box<dyn Error>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Box<dyn Error>)

Contains the error value