pub struct ListRequestBuilder<T> { /* private fields */ }Expand description
表示列表请求构建器。
Implementations§
Source§impl<T> ListRequestBuilder<T>
impl<T> ListRequestBuilder<T>
Sourcepub fn extra_body(
self,
key: impl Into<String>,
value: impl Into<JsonPayload>,
) -> Self
pub fn extra_body( self, key: impl Into<String>, value: impl Into<JsonPayload>, ) -> Self
在根对象追加额外字段。
Source§impl<T> ListRequestBuilder<T>
impl<T> ListRequestBuilder<T>
Sourcepub async fn send(self) -> Result<CursorPage<T>>
pub async fn send(self) -> Result<CursorPage<T>>
Trait Implementations§
Source§impl<T: Clone> Clone for ListRequestBuilder<T>
impl<T: Clone> Clone for ListRequestBuilder<T>
Source§fn clone(&self) -> ListRequestBuilder<T>
fn clone(&self) -> ListRequestBuilder<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for ListRequestBuilder<T>
impl<T> !RefUnwindSafe for ListRequestBuilder<T>
impl<T> Send for ListRequestBuilder<T>where
T: Send,
impl<T> Sync for ListRequestBuilder<T>where
T: Sync,
impl<T> Unpin for ListRequestBuilder<T>where
T: Unpin,
impl<T> UnsafeUnpin for ListRequestBuilder<T>
impl<T> !UnwindSafe for ListRequestBuilder<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