pub trait InitializedParts: Sealed + Clone + Send + Sync + Debug {
    fn params(&self) -> &ObjectParams;
    fn up_endpoints(&self) -> &Endpoints;
}
Expand description

初始化的分片信息

Required Methods

获取对象上传参数

上传地址列表

Implementors