risingwave_error::tonic

Type Alias ServiceName

source
type ServiceName = Cow<'static, str>;
Expand description

The service name that the error is from. Used to provide better error message.

Aliased Type§

enum ServiceName {
    Borrowed(&'static str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'static str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.