Trait BackendExt

Source
pub trait BackendExt: Backend {
    // Provided method
    fn update_at(&self, local_path: impl AsRef<Path>) -> SomaResult<()> { ... }
}

Provided Methods§

Source

fn update_at(&self, local_path: impl AsRef<Path>) -> SomaResult<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> BackendExt for T
where T: ?Sized + Backend,