pub struct GetItemsBuilder<'a, T> { /* private fields */ }
Implementations§
Source§impl<'a, T: DeserializeOwned> GetItemsBuilder<'a, T>
impl<'a, T: DeserializeOwned> GetItemsBuilder<'a, T>
pub fn clean(&mut self, clean: bool) -> &mut Self
pub fn offset(&mut self, offset: u64) -> &mut Self
pub fn limit(&mut self, limit: u64) -> &mut Self
pub fn fields(&mut self, fields: Vec<String>) -> &mut Self
pub fn omit(&mut self, omit: Vec<String>) -> &mut Self
pub fn unwind(&mut self, unwind: String) -> &mut Self
pub fn desc(&mut self, desc: bool) -> &mut Self
pub fn attachment(&mut self, attachment: bool) -> &mut Self
pub fn delimiter(&mut self, delimiter: String) -> &mut Self
pub fn bom(&mut self, bom: bool) -> &mut Self
pub fn xml_root(&mut self, xml_root: String) -> &mut Self
pub fn xml_row(&mut self, xml_row: String) -> &mut Self
pub fn skip_header_row(&mut self, skip_header_row: bool) -> &mut Self
pub fn skip_empty(&mut self, skip_empty: bool) -> &mut Self
pub fn simplified(&mut self, simplified: bool) -> &mut Self
pub fn skip_failed_pages(&mut self, skip_failed_pages: bool) -> &mut Self
pub async fn send(&self) -> Result<PaginationList<T>, ApifyClientError>
Auto Trait Implementations§
impl<'a, T> Freeze for GetItemsBuilder<'a, T>
impl<'a, T> !RefUnwindSafe for GetItemsBuilder<'a, T>
impl<'a, T> Send for GetItemsBuilder<'a, T>where
T: Send,
impl<'a, T> Sync for GetItemsBuilder<'a, T>where
T: Sync,
impl<'a, T> Unpin for GetItemsBuilder<'a, T>where
T: Unpin,
impl<'a, T> !UnwindSafe for GetItemsBuilder<'a, T>
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