pub trait SvcStashProxyInterface: Send + Sync {
    // Required method
    fn store(
        &self,
        svc_endpoint: ServerEnd<DirectoryMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn store(&self, svc_endpoint: ServerEnd<DirectoryMarker>) -> Result<(), Error>

Implementors§