pub struct DlqPageResponse {
pub items: Vec<DlqEntry>,
pub next_cursor: Option<String>,
pub has_more: bool,
pub page_size: u32,
}Fields§
§items: Vec<DlqEntry>§next_cursor: Option<String>§has_more: bool§page_size: u32Trait Implementations§
Source§impl Clone for DlqPageResponse
impl Clone for DlqPageResponse
Source§fn clone(&self) -> DlqPageResponse
fn clone(&self) -> DlqPageResponse
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 DlqPageResponse
impl Debug for DlqPageResponse
Source§impl<'de> Deserialize<'de> for DlqPageResponse
impl<'de> Deserialize<'de> for DlqPageResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DlqPageResponse
impl RefUnwindSafe for DlqPageResponse
impl Send for DlqPageResponse
impl Sync for DlqPageResponse
impl Unpin for DlqPageResponse
impl UnsafeUnpin for DlqPageResponse
impl UnwindSafe for DlqPageResponse
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