Skip to main content

StreamHandle

Type Alias StreamHandle 

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

This is either obtained from another method or specified as ‘blob:’ where ‘’ is an UUID of a Blob.

Aliased Type§

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

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.