BlockListRequired

Trait BlockListRequired 

Source
pub trait BlockListRequired<'a, T>
where T: Borrow<[u8]> + 'a,
{ // Required method fn block_list(&self) -> &'a BlockList<T>; // Provided method fn to_string(&self) -> String { ... } }

Required Methods§

Source

fn block_list(&self) -> &'a BlockList<T>

Provided Methods§

Source

fn to_string(&self) -> String

Implementors§

Source§

impl<'a, C, T, ContainerNameSet, BlobNameSet> BlockListRequired<'a, T> for PutBlockListBuilder<'a, C, T, ContainerNameSet, BlobNameSet, Yes>
where ContainerNameSet: ToAssign, BlobNameSet: ToAssign, C: Client, T: Borrow<[u8]> + 'a,