pub type StreamHandle<'a> = Cow<'a, str>;Expand description
This is either obtained from another method or specified as ‘blob:<uuid>’ where ‘<uuid>’ is an UUID of a Blob.
Aliased Type§
pub enum StreamHandle<'a> {
Borrowed(&'a str),
Owned(String),
}