Trait RecvFile

Source
pub trait RecvFile<'vfs, VFS, Err>: RecvStat<'vfs, VFS, Err>
where VFS: VFS, Err: From<VFS::Err>,
{ // Required method fn send_file( &self, ctx: VFS::Ctx<'vfs>, rel: VFS::OwnedPath, stat: Option<VFS::Stat>, opts: VFS::FileOptions, ); }

Required Methods§

Source

fn send_file( &self, ctx: VFS::Ctx<'vfs>, rel: VFS::OwnedPath, stat: Option<VFS::Stat>, opts: VFS::FileOptions, )

Implementors§

Source§

impl<'vfs, VFS, Err> RecvFile<'vfs, VFS, Err> for RecvFile<'vfs, VFS, Err, (VFS::Ctx<'vfs>, VFS::OwnedPath, Option<VFS::Stat>, VFS::FileOptions)>
where VFS: VFS, Err: From<VFS::Err>,