pub struct ListResponseMessageAttemptOut {
pub data: Vec<MessageAttemptOut>,
pub done: bool,
pub iterator: Option<String>,
pub prev_iterator: Option<String>,
}
Fields§
§data: Vec<MessageAttemptOut>
§done: bool
§iterator: Option<String>
§prev_iterator: Option<String>
Implementations§
Source§impl ListResponseMessageAttemptOut
impl ListResponseMessageAttemptOut
pub fn new( data: Vec<MessageAttemptOut>, done: bool, iterator: Option<String>, ) -> ListResponseMessageAttemptOut
Trait Implementations§
Source§impl Clone for ListResponseMessageAttemptOut
impl Clone for ListResponseMessageAttemptOut
Source§fn clone(&self) -> ListResponseMessageAttemptOut
fn clone(&self) -> ListResponseMessageAttemptOut
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 Default for ListResponseMessageAttemptOut
impl Default for ListResponseMessageAttemptOut
Source§fn default() -> ListResponseMessageAttemptOut
fn default() -> ListResponseMessageAttemptOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListResponseMessageAttemptOut
impl<'de> Deserialize<'de> for ListResponseMessageAttemptOut
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
Source§impl PartialEq for ListResponseMessageAttemptOut
impl PartialEq for ListResponseMessageAttemptOut
Source§fn eq(&self, other: &ListResponseMessageAttemptOut) -> bool
fn eq(&self, other: &ListResponseMessageAttemptOut) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListResponseMessageAttemptOut
Auto Trait Implementations§
impl Freeze for ListResponseMessageAttemptOut
impl RefUnwindSafe for ListResponseMessageAttemptOut
impl Send for ListResponseMessageAttemptOut
impl Sync for ListResponseMessageAttemptOut
impl Unpin for ListResponseMessageAttemptOut
impl UnwindSafe for ListResponseMessageAttemptOut
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