pub trait UserbootProxyInterface: Send + Sync {
// Required methods
fn post_bootfs_files(&self, files: Vec<BootfsFileVmo>) -> Result<(), Error>;
fn post_stash_svc(
&self,
stash_svc_endpoint: ServerEnd<SvcStashMarker>,
) -> Result<(), Error>;
}