pub struct BitableTableClient { /* private fields */ }Implementations§
Source§impl BitableTableClient
impl BitableTableClient
pub fn new() -> Self
Sourcepub async fn get_records_list(
&self,
app_token: &str,
table_id: &str,
request: SearchRecordsCond,
) -> Result<SearchRecordsResponse>
pub async fn get_records_list( &self, app_token: &str, table_id: &str, request: SearchRecordsCond, ) -> Result<SearchRecordsResponse>
Search records in a Bitable table
See: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-table-record/search
Sourcepub async fn batch_create_records(
&self,
app_token: &str,
table_id: &str,
request: BatchCreateRecordsRequest,
) -> Result<()>
pub async fn batch_create_records( &self, app_token: &str, table_id: &str, request: BatchCreateRecordsRequest, ) -> Result<()>
Batch create multiple records in a Bitable table
pub async fn batch_create_records_json( &self, app_token: &str, table_id: &str, records_json: &str, ) -> Result<()>
pub async fn get_fields_list( &self, app_token: &str, table_id: &str, ) -> Result<FieldsListResponse>
Auto Trait Implementations§
impl Freeze for BitableTableClient
impl RefUnwindSafe for BitableTableClient
impl Send for BitableTableClient
impl Sync for BitableTableClient
impl Unpin for BitableTableClient
impl UnsafeUnpin for BitableTableClient
impl UnwindSafe for BitableTableClient
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