pub struct DownloadCommandOptions {
pub byte_range: Option<Range<usize>>,
}
Expand description
Options for the download operation
Fields§
§byte_range: Option<Range<usize>>
The range of bytes to download. If not specified then the entire blob is downloaded. The start of the range must be less than the # of bytes in the blob or an error will be returned. The end of the range may be greater than the number of bytes in the blob.
Trait Implementations§
Source§impl Debug for DownloadCommandOptions
impl Debug for DownloadCommandOptions
Source§impl Default for DownloadCommandOptions
impl Default for DownloadCommandOptions
Source§fn default() -> DownloadCommandOptions
fn default() -> DownloadCommandOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DownloadCommandOptions
impl RefUnwindSafe for DownloadCommandOptions
impl Send for DownloadCommandOptions
impl Sync for DownloadCommandOptions
impl Unpin for DownloadCommandOptions
impl UnwindSafe for DownloadCommandOptions
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