⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

QuicResult

Type Alias QuicResult 

Source
pub type QuicResult<T> = Result<T, QuicError>;

Aliased Type§

pub enum QuicResult<T> {
    Ok(T),
    Err(QuicError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(QuicError)

Contains the error value