pub struct BatchGetRecordsRequest {
pub app_id: i32,
pub record_ids: Vec<i32>,
pub field_ids: Option<Vec<i32>>,
pub data_format: Option<DataFormat>,
}Expand description
Request to get a batch of records.
Fields§
§app_id: i32§record_ids: Vec<i32>§field_ids: Option<Vec<i32>>§data_format: Option<DataFormat>Trait Implementations§
Source§impl Clone for BatchGetRecordsRequest
impl Clone for BatchGetRecordsRequest
Source§fn clone(&self) -> BatchGetRecordsRequest
fn clone(&self) -> BatchGetRecordsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BatchGetRecordsRequest
impl Debug for BatchGetRecordsRequest
Auto Trait Implementations§
impl Freeze for BatchGetRecordsRequest
impl RefUnwindSafe for BatchGetRecordsRequest
impl Send for BatchGetRecordsRequest
impl Sync for BatchGetRecordsRequest
impl Unpin for BatchGetRecordsRequest
impl UnsafeUnpin for BatchGetRecordsRequest
impl UnwindSafe for BatchGetRecordsRequest
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