Skip to main content

SessionID

Type Alias SessionID 

Source
pub type SessionID<'a> = Cow<'a, str>;
Expand description

Unique identifier of attached debugging session.

Aliased Type§

pub enum SessionID<'a> {
    Borrowed(&'a str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.