pub struct ListResponseEndpointOut {
pub data: Vec<EndpointOut>,
pub done: bool,
pub iterator: Option<String>,
pub prev_iterator: Option<String>,
}
Fields§
§data: Vec<EndpointOut>
§done: bool
§iterator: Option<String>
§prev_iterator: Option<String>
Implementations§
Source§impl ListResponseEndpointOut
impl ListResponseEndpointOut
pub fn new( data: Vec<EndpointOut>, done: bool, iterator: Option<String>, ) -> ListResponseEndpointOut
Trait Implementations§
Source§impl Clone for ListResponseEndpointOut
impl Clone for ListResponseEndpointOut
Source§fn clone(&self) -> ListResponseEndpointOut
fn clone(&self) -> ListResponseEndpointOut
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 ListResponseEndpointOut
impl Debug for ListResponseEndpointOut
Source§impl Default for ListResponseEndpointOut
impl Default for ListResponseEndpointOut
Source§fn default() -> ListResponseEndpointOut
fn default() -> ListResponseEndpointOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListResponseEndpointOut
impl<'de> Deserialize<'de> for ListResponseEndpointOut
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 ListResponseEndpointOut
impl PartialEq for ListResponseEndpointOut
Source§impl Serialize for ListResponseEndpointOut
impl Serialize for ListResponseEndpointOut
impl StructuralPartialEq for ListResponseEndpointOut
Auto Trait Implementations§
impl Freeze for ListResponseEndpointOut
impl RefUnwindSafe for ListResponseEndpointOut
impl Send for ListResponseEndpointOut
impl Sync for ListResponseEndpointOut
impl Unpin for ListResponseEndpointOut
impl UnwindSafe for ListResponseEndpointOut
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