pub struct SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
CT: Send + Sync + Clone,
RIT: Send + Sync + Clone,
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static,{
pub request: RQ,
pub last_response: Option<RS>,
pub last_cursor: Option<CT>,
/* private fields */
}
Fields§
§request: RQ
§last_response: Option<RS>
§last_cursor: Option<CT>
Implementations§
source§impl<RQ, RS, CT, RIT, SCHC> SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
CT: Send + Sync + Clone,
RIT: Send + Sync + Clone,
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static,
impl<RQ, RS, CT, RIT, SCHC> SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
CT: Send + Sync + Clone,
RIT: Send + Sync + Clone,
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static,
Trait Implementations§
source§impl<RQ, RS, CT, RIT, SCHC> Clone for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Clone,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Clone,
CT: Send + Sync + Clone + Clone,
RIT: Send + Sync + Clone + Clone,
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static + Clone,
impl<RQ, RS, CT, RIT, SCHC> Clone for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Clone,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Clone,
CT: Send + Sync + Clone + Clone,
RIT: Send + Sync + Clone + Clone,
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static + Clone,
source§fn clone(&self) -> SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>
fn clone(&self) -> SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>
Returns a copy 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<RQ, RS, CT, RIT, SCHC> Debug for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Debug,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Debug,
CT: Send + Sync + Clone + Debug,
RIT: Send + Sync + Clone + Debug,
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static + Debug,
impl<RQ, RS, CT, RIT, SCHC> Debug for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Debug,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone + Debug,
CT: Send + Sync + Clone + Debug,
RIT: Send + Sync + Clone + Debug,
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static + Debug,
source§impl<RQ, RS, CT, RIT, SCHC> SlackApiResponseScroller<SCHC> for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
CT: Send + Sync + Clone,
RIT: Send + Sync + Clone,
SCHC: SlackClientHttpConnector + Send + Sync + Clone,
impl<RQ, RS, CT, RIT, SCHC> SlackApiResponseScroller<SCHC> for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>where
RQ: SlackApiScrollableRequest<SCHC, ResponseType = RS, CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
RS: SlackApiScrollableResponse<CursorType = CT, ResponseItemType = RIT> + Send + Sync + Clone,
CT: Send + Sync + Clone,
RIT: Send + Sync + Clone,
SCHC: SlackClientHttpConnector + Send + Sync + Clone,
type ResponseType = RS
type CursorType = CT
type ResponseItemType = RIT
fn has_next(&self) -> bool
fn next_mut<'a, 's>( &'a mut self, session: &'a SlackClientSession<'s, SCHC> ) -> BoxFuture<'a, ClientResult<Self::ResponseType>>
fn to_stream<'a, 's>( &'a self, session: &'a SlackClientSession<'s, SCHC> ) -> BoxStream<'a, ClientResult<Self::ResponseType>>
fn to_items_stream<'a, 's>( &'a self, session: &'a SlackClientSession<'s, SCHC> ) -> BoxStream<'a, ClientResult<Vec<Self::ResponseItemType>>>
Auto Trait Implementations§
impl<RQ, RS, CT, RIT, SCHC> RefUnwindSafe for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>
impl<RQ, RS, CT, RIT, SCHC> Send for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>
impl<RQ, RS, CT, RIT, SCHC> Sync for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>
impl<RQ, RS, CT, RIT, SCHC> Unpin for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>
impl<RQ, RS, CT, RIT, SCHC> UnwindSafe for SlackApiResponseScrollerState<RQ, RS, CT, RIT, SCHC>
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