Trait InitializedParts

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

初始化的分片信息

Required Methods§

Source

fn params(&self) -> &ObjectParams

获取对象上传参数

Source

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.

Implementors§