fidl_fuchsia_ldsvcTrait LoaderProxyInterface
Source pub trait LoaderProxyInterface: Send + Sync {
type LoadObjectResponseFut: Future<Output = Result<(i32, Option<Vmo>), Error>> + Send;
type ConfigResponseFut: Future<Output = Result<i32, Error>> + Send;
type CloneResponseFut: Future<Output = Result<i32, Error>> + Send;
// Required methods
fn done(&self) -> Result<(), Error>;
fn load_object(&self, object_name: &str) -> Self::LoadObjectResponseFut;
fn config(&self, config: &str) -> Self::ConfigResponseFut;
fn clone(&self, loader: ServerEnd<LoaderMarker>) -> Self::CloneResponseFut;
}