azure_storage_blobs/blob/
blob_block_with_size.rs

1use crate::blob::BlobBlockType;
2
3#[derive(Debug, Clone, PartialEq, Eq)]
4pub struct BlobBlockWithSize {
5    pub block_list_type: BlobBlockType,
6    pub size_in_bytes: u64,
7}