pub trait ConnIdExt {
    fn id(&self) -> &str;
}
Expand description

Extension trait to retrieve an id generated by the ConnId handler

Required Methods

Retrieves the id for this conn. This method will panic if it is run before the ConnId handler.

Implementors