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