pub struct ApplicationList {
pub data: Option<Vec<ProgramApplication>>,
}Fields§
§data: Option<Vec<ProgramApplication>>Data is the page of applications, newest first.
Implementations§
Source§impl ApplicationList
impl ApplicationList
pub fn new() -> ApplicationList
Trait Implementations§
Source§impl Clone for ApplicationList
impl Clone for ApplicationList
Source§fn clone(&self) -> ApplicationList
fn clone(&self) -> ApplicationList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApplicationList
impl Debug for ApplicationList
Source§impl Default for ApplicationList
impl Default for ApplicationList
Source§fn default() -> ApplicationList
fn default() -> ApplicationList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationList
impl<'de> Deserialize<'de> for ApplicationList
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 ApplicationList
impl PartialEq for ApplicationList
Source§impl Serialize for ApplicationList
impl Serialize for ApplicationList
impl StructuralPartialEq for ApplicationList
Auto Trait Implementations§
impl Freeze for ApplicationList
impl RefUnwindSafe for ApplicationList
impl Send for ApplicationList
impl Sync for ApplicationList
impl Unpin for ApplicationList
impl UnsafeUnpin for ApplicationList
impl UnwindSafe for ApplicationList
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