pub struct StreamingUploader { /* private fields */ }Implementations§
Source§impl StreamingUploader
impl StreamingUploader
pub fn new( client: Client, max_retries: usize, timeout_seconds: u64, output: OutputManager, ) -> Self
pub async fn upload_from_tar_entry<P>( &self, tar_path: &Path, _entry_path: &str, entry_offset: u64, entry_size: u64, upload_url: &str, digest: &str, token: &Option<String>, progress_callback: P, ) -> Result<()>
Auto Trait Implementations§
impl Freeze for StreamingUploader
impl !RefUnwindSafe for StreamingUploader
impl Send for StreamingUploader
impl Sync for StreamingUploader
impl Unpin for StreamingUploader
impl !UnwindSafe for StreamingUploader
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more