pub trait InitializedParts:
Sealed
+ Clone
+ Send
+ Sync
+ Debug {
// Required methods
fn params(&self) -> &ObjectParams;
fn up_endpoints(&self) -> &Endpoints;
}
Expand description
初始化的分片信息
Required Methods§
Sourcefn params(&self) -> &ObjectParams
fn params(&self) -> &ObjectParams
获取对象上传参数
Sourcefn up_endpoints(&self) -> &Endpoints
fn up_endpoints(&self) -> &Endpoints
上传地址列表
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.