pub trait Directory: Debug + DirectoryClone {
    // Required method
    fn list(&self, invocation: Arc<RpcInvocation>) -> Vec<Url>;
}
Expand description

Directory.

Directory Service

Required Methods§

source

fn list(&self, invocation: Arc<RpcInvocation>) -> Vec<Url>

Trait Implementations§

source§

impl Clone for Box<dyn Directory>

source§

fn clone(&self) -> Box<dyn Directory>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§