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