pub type RequestId<'a> = Cow<'a, str>;
Device request id.
pub enum RequestId<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.