pub type RemoteObjectId<'a> = Cow<'a, str>;
Unique object identifier.
pub enum RemoteObjectId<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.