#[non_exhaustive]pub struct ListPendingWaitpointsResult {
pub entries: Vec<PendingWaitpointInfo>,
pub next_cursor: Option<WaitpointId>,
}Expand description
Page of pending-waitpoint entries. Stage A preserves the existing
PendingWaitpointInfo shape; the §8 schema rewrite (HMAC
sanitisation + (token_kid, token_fingerprint) additive fields)
ships in Stage D alongside the HTTP wire-format deprecation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.entries: Vec<PendingWaitpointInfo>§next_cursor: Option<WaitpointId>Forward-only continuation cursor — None signals end-of-stream.
Implementations§
Source§impl ListPendingWaitpointsResult
impl ListPendingWaitpointsResult
pub fn new(entries: Vec<PendingWaitpointInfo>) -> Self
pub fn with_next_cursor(self, cursor: WaitpointId) -> Self
Trait Implementations§
Source§impl Clone for ListPendingWaitpointsResult
impl Clone for ListPendingWaitpointsResult
Source§fn clone(&self) -> ListPendingWaitpointsResult
fn clone(&self) -> ListPendingWaitpointsResult
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 Freeze for ListPendingWaitpointsResult
impl RefUnwindSafe for ListPendingWaitpointsResult
impl Send for ListPendingWaitpointsResult
impl Sync for ListPendingWaitpointsResult
impl Unpin for ListPendingWaitpointsResult
impl UnsafeUnpin for ListPendingWaitpointsResult
impl UnwindSafe for ListPendingWaitpointsResult
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