pub struct BaseResponse<T> {
pub raw_response: RawResponse,
pub data: Option<T>,
}Expand description
业务返回值
Fields§
§raw_response: RawResponse响应头
data: Option<T>具体数据
Implementations§
Source§impl<T> BaseResponse<T>
impl<T> BaseResponse<T>
pub fn success(&self) -> bool
pub fn code(&self) -> i32
pub fn msg(&self) -> &str
pub fn err(&self) -> Option<&ErrorInfo>
Sourcepub fn error_code(&self) -> Option<LarkErrorCode>
pub fn error_code(&self) -> Option<LarkErrorCode>
获取语义化的错误码
Sourcepub fn is_error_code(&self, code: LarkErrorCode) -> bool
pub fn is_error_code(&self, code: LarkErrorCode) -> bool
检查是否为特定错误码
Sourcepub fn is_permission_error(&self) -> bool
pub fn is_permission_error(&self) -> bool
检查是否为权限相关错误
Sourcepub fn is_auth_error(&self) -> bool
pub fn is_auth_error(&self) -> bool
检查是否为认证相关错误
Sourcepub fn is_server_error(&self) -> bool
pub fn is_server_error(&self) -> bool
检查是否为服务器错误
Sourcepub fn is_client_error(&self) -> bool
pub fn is_client_error(&self) -> bool
检查是否为客户端错误
Sourcepub fn is_retryable(&self) -> bool
pub fn is_retryable(&self) -> bool
检查是否可以重试
Sourcepub fn suggested_retry_delay(&self) -> Option<u64>
pub fn suggested_retry_delay(&self) -> Option<u64>
获取建议的重试延迟时间
Sourcepub fn data_or_error(self) -> Result<T, String>
pub fn data_or_error(self) -> Result<T, String>
获取数据或返回友好错误
Sourcepub fn data_or_api_error(self) -> SDKResult<T>
pub fn data_or_api_error(self) -> SDKResult<T>
获取数据或转换为LarkAPIError
Sourcepub fn handle_common_errors(self) -> SDKResult<Self>
pub fn handle_common_errors(self) -> SDKResult<Self>
处理通用错误,返回处理后的响应或错误
Sourcepub fn user_friendly_error(&self) -> Option<String>
pub fn user_friendly_error(&self) -> Option<String>
获取用户友好的错误描述
Sourcepub fn error_solutions(&self) -> Vec<String>
pub fn error_solutions(&self) -> Vec<String>
获取错误的建议解决方案
Sourcepub fn help_links(&self) -> Vec<(&'static str, &'static str)>
pub fn help_links(&self) -> Vec<(&'static str, &'static str)>
获取相关的帮助链接
Sourcepub fn print_error_details(&self)
pub fn print_error_details(&self)
打印详细的错误信息(用于调试)
Trait Implementations§
Source§impl<T: Debug> Debug for BaseResponse<T>
impl<T: Debug> Debug for BaseResponse<T>
Source§impl<'de, T> Deserialize<'de> for BaseResponse<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for BaseResponse<T>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl ExecutableBuilder<AppService, CopyAppRequest, BaseResponse<CopyAppResponse>> for CopyAppRequestBuilder
impl ExecutableBuilder<AppService, CopyAppRequest, BaseResponse<CopyAppResponse>> for CopyAppRequestBuilder
Source§fn build(self) -> CopyAppRequest
fn build(self) -> CopyAppRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CopyAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CopyAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CopyAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CopyAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppService, CreateAppRequest, BaseResponse<CreateAppResponse>> for CreateAppRequestBuilder
impl ExecutableBuilder<AppService, CreateAppRequest, BaseResponse<CreateAppResponse>> for CreateAppRequestBuilder
Source§fn build(self) -> CreateAppRequest
fn build(self) -> CreateAppRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppService, GetAppRequest, BaseResponse<GetAppResponse>> for GetAppRequestBuilder
impl ExecutableBuilder<AppService, GetAppRequest, BaseResponse<GetAppResponse>> for GetAppRequestBuilder
Source§fn build(self) -> GetAppRequest
fn build(self) -> GetAppRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppService, UpdateAppRequest, BaseResponse<UpdateAppResponse>> for UpdateAppRequestBuilder
impl ExecutableBuilder<AppService, UpdateAppRequest, BaseResponse<UpdateAppResponse>> for UpdateAppRequestBuilder
Source§fn build(self) -> UpdateAppRequest
fn build(self) -> UpdateAppRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateAppResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableRecordService, BatchCreateRecordRequest, BaseResponse<BatchCreateRecordResponse>> for BatchCreateRecordRequestBuilder
impl ExecutableBuilder<AppTableRecordService, BatchCreateRecordRequest, BaseResponse<BatchCreateRecordResponse>> for BatchCreateRecordRequestBuilder
Source§fn build(self) -> BatchCreateRecordRequest
fn build(self) -> BatchCreateRecordRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableRecordService, BatchDeleteRecordRequest, BaseResponse<BatchDeleteRecordResponse>> for BatchDeleteRecordRequestBuilder
impl ExecutableBuilder<AppTableRecordService, BatchDeleteRecordRequest, BaseResponse<BatchDeleteRecordResponse>> for BatchDeleteRecordRequestBuilder
Source§fn build(self) -> BatchDeleteRecordRequest
fn build(self) -> BatchDeleteRecordRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableRecordService, BatchGetRecordRequest, BaseResponse<BatchGetRecordResponse>> for BatchGetRecordRequestBuilder
impl ExecutableBuilder<AppTableRecordService, BatchGetRecordRequest, BaseResponse<BatchGetRecordResponse>> for BatchGetRecordRequestBuilder
Source§fn build(self) -> BatchGetRecordRequest
fn build(self) -> BatchGetRecordRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchGetRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchGetRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchGetRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchGetRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableRecordService, BatchUpdateRecordRequest, BaseResponse<BatchUpdateRecordResponse>> for BatchUpdateRecordRequestBuilder
impl ExecutableBuilder<AppTableRecordService, BatchUpdateRecordRequest, BaseResponse<BatchUpdateRecordResponse>> for BatchUpdateRecordRequestBuilder
Source§fn build(self) -> BatchUpdateRecordRequest
fn build(self) -> BatchUpdateRecordRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchUpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchUpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchUpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchUpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableRecordService, DeleteRecordRequest, BaseResponse<DeleteRecordResponse>> for DeleteRecordRequestBuilder
impl ExecutableBuilder<AppTableRecordService, DeleteRecordRequest, BaseResponse<DeleteRecordResponse>> for DeleteRecordRequestBuilder
Source§fn build(self) -> DeleteRecordRequest
fn build(self) -> DeleteRecordRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableRecordService, SearchRecordRequest, BaseResponse<SearchRecordResponse>> for SearchRecordRequestBuilder
impl ExecutableBuilder<AppTableRecordService, SearchRecordRequest, BaseResponse<SearchRecordResponse>> for SearchRecordRequestBuilder
Source§fn build(self) -> SearchRecordRequest
fn build(self) -> SearchRecordRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SearchRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SearchRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SearchRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SearchRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableRecordService, UpdateRecordRequest, BaseResponse<UpdateRecordResponse>> for UpdateRecordRequestBuilder
impl ExecutableBuilder<AppTableRecordService, UpdateRecordRequest, BaseResponse<UpdateRecordResponse>> for UpdateRecordRequestBuilder
Source§fn build(self) -> UpdateRecordRequest
fn build(self) -> UpdateRecordRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableRecordService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateRecordResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableService, BatchCreateTablesRequest, BaseResponse<BatchCreateTablesResponse>> for BatchCreateTablesRequestBuilder
impl ExecutableBuilder<AppTableService, BatchCreateTablesRequest, BaseResponse<BatchCreateTablesResponse>> for BatchCreateTablesRequestBuilder
Source§fn build(self) -> BatchCreateTablesRequest
fn build(self) -> BatchCreateTablesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreateTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableService, BatchDeleteTablesRequest, BaseResponse<BatchDeleteTablesResponse>> for BatchDeleteTablesRequestBuilder
impl ExecutableBuilder<AppTableService, BatchDeleteTablesRequest, BaseResponse<BatchDeleteTablesResponse>> for BatchDeleteTablesRequestBuilder
Source§fn build(self) -> BatchDeleteTablesRequest
fn build(self) -> BatchDeleteTablesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchDeleteTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableService, CreateTableRequest, BaseResponse<CreateTableResponse>> for CreateTableRequestBuilder
impl ExecutableBuilder<AppTableService, CreateTableRequest, BaseResponse<CreateTableResponse>> for CreateTableRequestBuilder
Source§fn build(self) -> CreateTableRequest
fn build(self) -> CreateTableRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableService, DeleteTableRequest, BaseResponse<DeleteTableResponse>> for DeleteTableRequestBuilder
impl ExecutableBuilder<AppTableService, DeleteTableRequest, BaseResponse<DeleteTableResponse>> for DeleteTableRequestBuilder
Source§fn build(self) -> DeleteTableRequest
fn build(self) -> DeleteTableRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableService, ListTablesRequest, BaseResponse<ListTablesResponse>> for ListTablesRequestBuilder
impl ExecutableBuilder<AppTableService, ListTablesRequest, BaseResponse<ListTablesResponse>> for ListTablesRequestBuilder
Source§fn build(self) -> ListTablesRequest
fn build(self) -> ListTablesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListTablesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableService, PatchTableRequest, BaseResponse<PatchTableResponse>> for PatchTableRequestBuilder
impl ExecutableBuilder<AppTableService, PatchTableRequest, BaseResponse<PatchTableResponse>> for PatchTableRequestBuilder
Source§fn build(self) -> PatchTableRequest
fn build(self) -> PatchTableRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchTableResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableViewService, CreateViewRequest, BaseResponse<CreateViewResponse>> for CreateViewRequestBuilder
impl ExecutableBuilder<AppTableViewService, CreateViewRequest, BaseResponse<CreateViewResponse>> for CreateViewRequestBuilder
Source§fn build(self) -> CreateViewRequest
fn build(self) -> CreateViewRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableViewService, GetViewRequest, BaseResponse<GetViewResponse>> for GetViewRequestBuilder
impl ExecutableBuilder<AppTableViewService, GetViewRequest, BaseResponse<GetViewResponse>> for GetViewRequestBuilder
Source§fn build(self) -> GetViewRequest
fn build(self) -> GetViewRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableViewService, ListViewsRequest, BaseResponse<ListViewsResponse>> for ListViewsRequestBuilder
impl ExecutableBuilder<AppTableViewService, ListViewsRequest, BaseResponse<ListViewsResponse>> for ListViewsRequestBuilder
Source§fn build(self) -> ListViewsRequest
fn build(self) -> ListViewsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListViewsResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListViewsResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListViewsResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListViewsResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<AppTableViewService, PatchViewRequest, BaseResponse<PatchViewResponse>> for PatchViewRequestBuilder
impl ExecutableBuilder<AppTableViewService, PatchViewRequest, BaseResponse<PatchViewResponse>> for PatchViewRequestBuilder
Source§fn build(self) -> PatchViewRequest
fn build(self) -> PatchViewRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 AppTableViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchViewResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<BoardService, ListWhiteboardNodesRequest, BaseResponse<ListWhiteboardNodesResponse>> for ListWhiteboardNodesRequestBuilder
impl ExecutableBuilder<BoardService, ListWhiteboardNodesRequest, BaseResponse<ListWhiteboardNodesResponse>> for ListWhiteboardNodesRequestBuilder
Source§fn build(self) -> ListWhiteboardNodesRequest
fn build(self) -> ListWhiteboardNodesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 BoardService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListWhiteboardNodesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 BoardService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListWhiteboardNodesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 BoardService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListWhiteboardNodesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 BoardService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListWhiteboardNodesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<DocumentService, CreateDocumentRequest, BaseResponse<CreateDocumentRespData>> for CreateDocumentRequestBuilder
impl ExecutableBuilder<DocumentService, CreateDocumentRequest, BaseResponse<CreateDocumentRespData>> for CreateDocumentRequestBuilder
Source§fn build(self) -> CreateDocumentRequest
fn build(self) -> CreateDocumentRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateDocumentRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateDocumentRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateDocumentRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateDocumentRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<DocumentService, ListDocumentBlocksRequest, BaseResponse<ListDocumentBlocksRespData>> for ListDocumentBlocksRequestBuilder
impl ExecutableBuilder<DocumentService, ListDocumentBlocksRequest, BaseResponse<ListDocumentBlocksRespData>> for ListDocumentBlocksRequestBuilder
Source§fn build(self) -> ListDocumentBlocksRequest
fn build(self) -> ListDocumentBlocksRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListDocumentBlocksRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListDocumentBlocksRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListDocumentBlocksRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 DocumentService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListDocumentBlocksRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<EventService, GetFileSubscriptionRequest, BaseResponse<GetFileSubscriptionRespData>> for GetFileSubscriptionRequestBuilder
impl ExecutableBuilder<EventService, GetFileSubscriptionRequest, BaseResponse<GetFileSubscriptionRespData>> for GetFileSubscriptionRequestBuilder
Source§fn build(self) -> GetFileSubscriptionRequest
fn build(self) -> GetFileSubscriptionRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 EventService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFileSubscriptionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 EventService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFileSubscriptionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 EventService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFileSubscriptionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 EventService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFileSubscriptionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<EventService, SubscribeFileEventsRequest, BaseResponse<SubscribeFileEventsRespData>> for SubscribeFileEventsRequestBuilder
impl ExecutableBuilder<EventService, SubscribeFileEventsRequest, BaseResponse<SubscribeFileEventsRespData>> for SubscribeFileEventsRequestBuilder
Source§fn build(self) -> SubscribeFileEventsRequest
fn build(self) -> SubscribeFileEventsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 EventService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 EventService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 EventService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 EventService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<EventService, UnsubscribeFileEventsRequest, BaseResponse<UnsubscribeFileEventsRespData>> for UnsubscribeFileEventsRequestBuilder
impl ExecutableBuilder<EventService, UnsubscribeFileEventsRequest, BaseResponse<UnsubscribeFileEventsRespData>> for UnsubscribeFileEventsRequestBuilder
Source§fn build(self) -> UnsubscribeFileEventsRequest
fn build(self) -> UnsubscribeFileEventsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 EventService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UnsubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 EventService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UnsubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 EventService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UnsubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 EventService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UnsubscribeFileEventsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<ExplorerService, CreateFolderRequest, BaseResponse<CreateFolderResponse>> for CreateFolderRequestBuilder
impl ExecutableBuilder<ExplorerService, CreateFolderRequest, BaseResponse<CreateFolderResponse>> for CreateFolderRequestBuilder
Source§fn build(self) -> CreateFolderRequest
fn build(self) -> CreateFolderRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<ExplorerService, ListFolderRequest, BaseResponse<ListFolderResponse>> for ListFolderRequestBuilder
impl ExecutableBuilder<ExplorerService, ListFolderRequest, BaseResponse<ListFolderResponse>> for ListFolderRequestBuilder
Source§fn build(self) -> ListFolderRequest
fn build(self) -> ListFolderRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 ExplorerService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFolderResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<FileVersionService, CreateVersionRequest, BaseResponse<CreateVersionRespData>> for CreateVersionRequestBuilder
impl ExecutableBuilder<FileVersionService, CreateVersionRequest, BaseResponse<CreateVersionRespData>> for CreateVersionRequestBuilder
Source§fn build(self) -> CreateVersionRequest
fn build(self) -> CreateVersionRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<FileVersionService, DeleteVersionRequest, BaseResponse<DeleteVersionRespData>> for DeleteVersionRequestBuilder
impl ExecutableBuilder<FileVersionService, DeleteVersionRequest, BaseResponse<DeleteVersionRespData>> for DeleteVersionRequestBuilder
Source§fn build(self) -> DeleteVersionRequest
fn build(self) -> DeleteVersionRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<FileVersionService, GetVersionRequest, BaseResponse<GetVersionRespData>> for GetVersionRequestBuilder
impl ExecutableBuilder<FileVersionService, GetVersionRequest, BaseResponse<GetVersionRespData>> for GetVersionRequestBuilder
Source§fn build(self) -> GetVersionRequest
fn build(self) -> GetVersionRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetVersionRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<FileVersionService, ListVersionsRequest, BaseResponse<ListVersionsRespData>> for ListVersionsRequestBuilder
impl ExecutableBuilder<FileVersionService, ListVersionsRequest, BaseResponse<ListVersionsRespData>> for ListVersionsRequestBuilder
Source§fn build(self) -> ListVersionsRequest
fn build(self) -> ListVersionsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListVersionsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListVersionsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListVersionsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FileVersionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListVersionsRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<FolderService, ListFilesRequest, BaseResponse<ListFilesRespData>> for ListFilesRequestBuilder
impl ExecutableBuilder<FolderService, ListFilesRequest, BaseResponse<ListFilesRespData>> for ListFilesRequestBuilder
Source§fn build(self) -> ListFilesRequest
fn build(self) -> ListFilesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 FolderService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFilesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 FolderService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFilesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FolderService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFilesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 FolderService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFilesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<LikeService, ListFileLikesRequest, BaseResponse<ListFileLikesRespData>> for ListFileLikesRequestBuilder
impl ExecutableBuilder<LikeService, ListFileLikesRequest, BaseResponse<ListFileLikesRespData>> for ListFileLikesRequestBuilder
Source§fn build(self) -> ListFileLikesRequest
fn build(self) -> ListFileLikesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 LikeService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFileLikesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 LikeService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFileLikesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 LikeService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFileLikesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 LikeService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListFileLikesRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<MediaService, UploadMediaRequest, BaseResponse<UploadMediaRespData>> for UploadMediaRequestBuilder
impl ExecutableBuilder<MediaService, UploadMediaRequest, BaseResponse<UploadMediaRespData>> for UploadMediaRequestBuilder
Source§fn build(self) -> UploadMediaRequest
fn build(self) -> UploadMediaRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadMediaRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadMediaRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadMediaRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadMediaRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<MediaService, UploadPartRequest, BaseResponse<UploadPartRespData>> for UploadPartRequestBuilder
impl ExecutableBuilder<MediaService, UploadPartRequest, BaseResponse<UploadPartRespData>> for UploadPartRequestBuilder
Source§fn build(self) -> UploadPartRequest
fn build(self) -> UploadPartRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadPartRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadPartRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadPartRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 MediaService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UploadPartRespData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<PermissionService, BatchCreatePermissionMemberRequest, BaseResponse<BatchCreatePermissionMemberResponse>> for BatchCreatePermissionMemberRequestBuilder
impl ExecutableBuilder<PermissionService, BatchCreatePermissionMemberRequest, BaseResponse<BatchCreatePermissionMemberResponse>> for BatchCreatePermissionMemberRequestBuilder
Source§fn build(self) -> BatchCreatePermissionMemberRequest
fn build(self) -> BatchCreatePermissionMemberRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<BatchCreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<PermissionService, CreatePermissionMemberRequest, BaseResponse<CreatePermissionMemberResponse>> for CreatePermissionMemberRequestBuilder
impl ExecutableBuilder<PermissionService, CreatePermissionMemberRequest, BaseResponse<CreatePermissionMemberResponse>> for CreatePermissionMemberRequestBuilder
Source§fn build(self) -> CreatePermissionMemberRequest
fn build(self) -> CreatePermissionMemberRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreatePermissionMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<PermissionService, GetPermissionPublicV2Request, BaseResponse<GetPermissionPublicV2Response>> for GetPermissionPublicV2RequestBuilder
impl ExecutableBuilder<PermissionService, GetPermissionPublicV2Request, BaseResponse<GetPermissionPublicV2Response>> for GetPermissionPublicV2RequestBuilder
Source§fn build(self) -> GetPermissionPublicV2Request
fn build(self) -> GetPermissionPublicV2Request
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<PermissionService, ListPermissionMembersRequest, BaseResponse<ListPermissionMembersResponse>> for ListPermissionMembersRequestBuilder
impl ExecutableBuilder<PermissionService, ListPermissionMembersRequest, BaseResponse<ListPermissionMembersResponse>> for ListPermissionMembersRequestBuilder
Source§fn build(self) -> ListPermissionMembersRequest
fn build(self) -> ListPermissionMembersRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListPermissionMembersResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListPermissionMembersResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListPermissionMembersResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ListPermissionMembersResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<PermissionService, PatchPermissionPublicV2Request, BaseResponse<PatchPermissionPublicV2Response>> for PatchPermissionPublicV2RequestBuilder
impl ExecutableBuilder<PermissionService, PatchPermissionPublicV2Request, BaseResponse<PatchPermissionPublicV2Response>> for PatchPermissionPublicV2RequestBuilder
Source§fn build(self) -> PatchPermissionPublicV2Request
fn build(self) -> PatchPermissionPublicV2Request
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<PatchPermissionPublicV2Response>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<PermissionsService, GetPermissionRequest, BaseResponse<GetPermissionResponse>> for GetPermissionRequestBuilder
impl ExecutableBuilder<PermissionsService, GetPermissionRequest, BaseResponse<GetPermissionResponse>> for GetPermissionRequestBuilder
Source§fn build(self) -> GetPermissionRequest
fn build(self) -> GetPermissionRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<PermissionsService, PatchPermissionRequest, BaseResponse<GetPermissionResponse>> for PatchPermissionRequestBuilder
impl ExecutableBuilder<PermissionsService, PatchPermissionRequest, BaseResponse<GetPermissionResponse>> for PatchPermissionRequestBuilder
Source§fn build(self) -> PatchPermissionRequest
fn build(self) -> PatchPermissionRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 PermissionsService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetPermissionResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SheetRowColService, DeleteRowsOrColumnsRequest, BaseResponse<DeleteRowsOrColumnsResponseData>> for DeleteRowsOrColumnsRequestBuilder
impl ExecutableBuilder<SheetRowColService, DeleteRowsOrColumnsRequest, BaseResponse<DeleteRowsOrColumnsResponseData>> for DeleteRowsOrColumnsRequestBuilder
Source§fn build(self) -> DeleteRowsOrColumnsRequest
fn build(self) -> DeleteRowsOrColumnsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SheetRowColService, InsertRowsOrColumnsRequest, BaseResponse<InsertRowsOrColumnsResponseData>> for InsertRowsOrColumnsRequestBuilder
impl ExecutableBuilder<SheetRowColService, InsertRowsOrColumnsRequest, BaseResponse<InsertRowsOrColumnsResponseData>> for InsertRowsOrColumnsRequestBuilder
Source§fn build(self) -> InsertRowsOrColumnsRequest
fn build(self) -> InsertRowsOrColumnsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<InsertRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<InsertRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<InsertRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SheetRowColService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<InsertRowsOrColumnsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpaceMemberService, CreateSpaceMemberRequest, BaseResponse<CreateSpaceMemberResponse>> for CreateSpaceMemberRequestBuilder
impl ExecutableBuilder<SpaceMemberService, CreateSpaceMemberRequest, BaseResponse<CreateSpaceMemberResponse>> for CreateSpaceMemberRequestBuilder
Source§fn build(self) -> CreateSpaceMemberRequest
fn build(self) -> CreateSpaceMemberRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpaceMemberService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpaceMemberService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpaceMemberService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpaceMemberService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceMemberResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpaceService, CreateSpaceRequest, BaseResponse<CreateSpaceResponse>> for CreateSpaceRequestBuilder
impl ExecutableBuilder<SpaceService, CreateSpaceRequest, BaseResponse<CreateSpaceResponse>> for CreateSpaceRequestBuilder
Source§fn build(self) -> CreateSpaceRequest
fn build(self) -> CreateSpaceRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpaceService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpaceService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpaceService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpaceService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpaceResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, AddProtectRangeRequest, BaseResponse<AddProtectRangeResponseData>> for AddProtectRangeRequestBuilder
impl ExecutableBuilder<SpreadsheetService, AddProtectRangeRequest, BaseResponse<AddProtectRangeResponseData>> for AddProtectRangeRequestBuilder
Source§fn build(self) -> AddProtectRangeRequest
fn build(self) -> AddProtectRangeRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AddProtectRangeResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AddProtectRangeResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AddProtectRangeResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AddProtectRangeResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, CreateSpreedSheetRequest, BaseResponse<CreateSpreedSheetResponseData>> for CreateSpreedSheetRequestBuilder
impl ExecutableBuilder<SpreadsheetService, CreateSpreedSheetRequest, BaseResponse<CreateSpreedSheetResponseData>> for CreateSpreedSheetRequestBuilder
Source§fn build(self) -> CreateSpreedSheetRequest
fn build(self) -> CreateSpreedSheetRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpreedSheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpreedSheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpreedSheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateSpreedSheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, DeleteDimensionRangeRequest, BaseResponse<DeleteDimensionRangeResponse>> for DeleteDimensionRangeRequestBuilder
impl ExecutableBuilder<SpreadsheetService, DeleteDimensionRangeRequest, BaseResponse<DeleteDimensionRangeResponse>> for DeleteDimensionRangeRequestBuilder
Source§fn build(self) -> DeleteDimensionRangeRequest
fn build(self) -> DeleteDimensionRangeRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteDimensionRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteDimensionRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteDimensionRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteDimensionRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, GetSpreadsheetRequest, BaseResponse<GetSpreadsheetResponseData>> for GetSpreadsheetRequestBuilder
impl ExecutableBuilder<SpreadsheetService, GetSpreadsheetRequest, BaseResponse<GetSpreadsheetResponseData>> for GetSpreadsheetRequestBuilder
Source§fn build(self) -> GetSpreadsheetRequest
fn build(self) -> GetSpreadsheetRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetSpreadsheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetSpreadsheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetSpreadsheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetSpreadsheetResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, InsertDimensionRangeRequest, BaseResponse<EmptyResponse>> for InsertDimensionRangeRequestBuilder
impl ExecutableBuilder<SpreadsheetService, InsertDimensionRangeRequest, BaseResponse<EmptyResponse>> for InsertDimensionRangeRequestBuilder
Source§fn build(self) -> InsertDimensionRangeRequest
fn build(self) -> InsertDimensionRangeRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, PatchSpreadSheetRequest, BaseResponse<RawResponse>> for PatchSpreadSheetRequestBuilder
impl ExecutableBuilder<SpreadsheetService, PatchSpreadSheetRequest, BaseResponse<RawResponse>> for PatchSpreadSheetRequestBuilder
Source§fn build(self) -> PatchSpreadSheetRequest
fn build(self) -> PatchSpreadSheetRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<RawResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<RawResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<RawResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<RawResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, ReadingSingleRangeRequest, BaseResponse<ReadingSingleRangeResponse>> for ReadingSingleRangeRequestBuilder
impl ExecutableBuilder<SpreadsheetService, ReadingSingleRangeRequest, BaseResponse<ReadingSingleRangeResponse>> for ReadingSingleRangeRequestBuilder
Source§fn build(self) -> ReadingSingleRangeRequest
fn build(self) -> ReadingSingleRangeRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ReadingSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ReadingSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ReadingSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<ReadingSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, UpdateDimensionRangeRequest, BaseResponse<EmptyResponse>> for UpdateDimensionRangeRequestBuilder
impl ExecutableBuilder<SpreadsheetService, UpdateDimensionRangeRequest, BaseResponse<EmptyResponse>> for UpdateDimensionRangeRequestBuilder
Source§fn build(self) -> UpdateDimensionRangeRequest
fn build(self) -> UpdateDimensionRangeRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, WriteDataToMultiRangesRequest, BaseResponse<WriteDataToMultiRangesResponse>> for WriteDataToMultiRangesBuilder
impl ExecutableBuilder<SpreadsheetService, WriteDataToMultiRangesRequest, BaseResponse<WriteDataToMultiRangesResponse>> for WriteDataToMultiRangesBuilder
Source§fn build(self) -> WriteDataToMultiRangesRequest
fn build(self) -> WriteDataToMultiRangesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToMultiRangesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToMultiRangesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToMultiRangesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToMultiRangesResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetService, WriteDataToSingleRangeRequest, BaseResponse<SheetDataUpdates>> for WriteDataToSingleRangeBuilder
impl ExecutableBuilder<SpreadsheetService, WriteDataToSingleRangeRequest, BaseResponse<SheetDataUpdates>> for WriteDataToSingleRangeBuilder
Source§fn build(self) -> WriteDataToSingleRangeRequest
fn build(self) -> WriteDataToSingleRangeRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<WriteDataToSingleRangeResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetFilterService, CreateSheetFilterRequest, BaseResponse<EmptyResponse>> for CreateSheetFilterRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetFilterService, CreateSheetFilterRequest, BaseResponse<EmptyResponse>> for CreateSheetFilterRequestBuilder
Source§fn build(self) -> CreateSheetFilterRequest
fn build(self) -> CreateSheetFilterRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<EmptyResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetFilterViewService, CreateFilterViewRequest, BaseResponse<CreateFilterViewResponseData>> for CreateFilterViewRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetFilterViewService, CreateFilterViewRequest, BaseResponse<CreateFilterViewResponseData>> for CreateFilterViewRequestBuilder
Source§fn build(self) -> CreateFilterViewRequest
fn build(self) -> CreateFilterViewRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFilterViewResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterViewService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFilterViewResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFilterViewResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetFilterViewService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFilterViewResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, AppendDataRequest, BaseResponse<UpdateSheetDataResponse>> for AppendDataRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, AppendDataRequest, BaseResponse<UpdateSheetDataResponse>> for AppendDataRequestBuilder
Source§fn build(self) -> AppendDataRequest
fn build(self) -> AppendDataRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AppendDataResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AppendDataResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AppendDataResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<AppendDataResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, CreateConditionFormatsRequest, BaseResponse<CreateConditionFormatsResponseData>> for CreateConditionFormatsRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, CreateConditionFormatsRequest, BaseResponse<CreateConditionFormatsResponseData>> for CreateConditionFormatsRequestBuilder
Source§fn build(self) -> CreateConditionFormatsRequest
fn build(self) -> CreateConditionFormatsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateConditionFormatsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateConditionFormatsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateConditionFormatsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateConditionFormatsResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, CreateFloatImageRequest, BaseResponse<CreateFloatImageResponseData>> for CreateFloatImageRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, CreateFloatImageRequest, BaseResponse<CreateFloatImageResponseData>> for CreateFloatImageRequestBuilder
Source§fn build(self) -> CreateFloatImageRequest
fn build(self) -> CreateFloatImageRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<CreateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, DeleteFloatImageRequest, BaseResponse<DeleteFloatImageResponseData>> for DeleteFloatImageRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, DeleteFloatImageRequest, BaseResponse<DeleteFloatImageResponseData>> for DeleteFloatImageRequestBuilder
Source§fn build(self) -> DeleteFloatImageRequest
fn build(self) -> DeleteFloatImageRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<DeleteFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, GetFloatImageRequest, BaseResponse<GetFloatImageResponseData>> for GetFloatImageRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, GetFloatImageRequest, BaseResponse<GetFloatImageResponseData>> for GetFloatImageRequestBuilder
Source§fn build(self) -> GetFloatImageRequest
fn build(self) -> GetFloatImageRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<GetFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, OperateSheetsRequest, BaseResponse<OperateSheetResponse>> for OperateSheetsRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, OperateSheetsRequest, BaseResponse<OperateSheetResponse>> for OperateSheetsRequestBuilder
Source§fn build(self) -> OperateSheetsRequest
fn build(self) -> OperateSheetsRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, QueryFloatImagesRequest, BaseResponse<QueryFloatImagesResponseData>> for QueryFloatImagesRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, QueryFloatImagesRequest, BaseResponse<QueryFloatImagesResponseData>> for QueryFloatImagesRequestBuilder
Source§fn build(self) -> QueryFloatImagesRequest
fn build(self) -> QueryFloatImagesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<QueryFloatImagesResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<QueryFloatImagesResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<QueryFloatImagesResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<QueryFloatImagesResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, SetDataValidationRequest, BaseResponse<SetDataValidationResponseData>> for SetDataValidationRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, SetDataValidationRequest, BaseResponse<SetDataValidationResponseData>> for SetDataValidationRequestBuilder
Source§fn build(self) -> SetDataValidationRequest
fn build(self) -> SetDataValidationRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SetDataValidationResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SetDataValidationResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SetDataValidationResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<SetDataValidationResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, UpdateFloatImageRequest, BaseResponse<UpdateFloatImageResponseData>> for UpdateFloatImageRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, UpdateFloatImageRequest, BaseResponse<UpdateFloatImageResponseData>> for UpdateFloatImageRequestBuilder
Source§fn build(self) -> UpdateFloatImageRequest
fn build(self) -> UpdateFloatImageRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<UpdateFloatImageResponseData>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl ExecutableBuilder<SpreadsheetSheetService, UpdateSheetPropertiesRequest, BaseResponse<OperateSheetResponse>> for UpdateSheetPropertiesRequestBuilder
impl ExecutableBuilder<SpreadsheetSheetService, UpdateSheetPropertiesRequest, BaseResponse<OperateSheetResponse>> for UpdateSheetPropertiesRequestBuilder
Source§fn build(self) -> UpdateSheetPropertiesRequest
fn build(self) -> UpdateSheetPropertiesRequest
构建请求对象
Source§fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
执行请求并返回响应
Source§fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_with_options<'life0, 'async_trait>(
self,
service: &'life0 SpreadsheetSheetService,
option: RequestOption,
) -> Pin<Box<dyn Future<Output = SDKResult<BaseResponse<OperateSheetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
带选项执行请求
Source§impl<T> Serialize for BaseResponse<T>where
T: Serialize,
impl<T> Serialize for BaseResponse<T>where
T: Serialize,
Source§impl<T> StandardResponse<T> for BaseResponse<T>
impl<T> StandardResponse<T> for BaseResponse<T>
Source§fn into_result(self) -> SDKResult<T>
fn into_result(self) -> SDKResult<T>
将响应转换为统一的Result格式 Read more
Source§fn data_or_default(self) -> Twhere
T: Default,
fn data_or_default(self) -> Twhere
T: Default,
获取响应数据,失败时返回默认值 Read more
Auto Trait Implementations§
impl<T> Freeze for BaseResponse<T>where
T: Freeze,
impl<T> RefUnwindSafe for BaseResponse<T>where
T: RefUnwindSafe,
impl<T> Send for BaseResponse<T>where
T: Send,
impl<T> Sync for BaseResponse<T>where
T: Sync,
impl<T> Unpin for BaseResponse<T>where
T: Unpin,
impl<T> UnwindSafe for BaseResponse<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more