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