pub struct ApplicationsResponse {
pub embedded: Option<EmbeddedApplications>,
pub page: Option<PageInfo>,
pub links: Option<HashMap<String, Link>>,
}
Expand description
Response from the Applications API.
Fields§
§embedded: Option<EmbeddedApplications>
Embedded applications data
page: Option<PageInfo>
Pagination information
links: Option<HashMap<String, Link>>
Response links
Trait Implementations§
Source§impl Clone for ApplicationsResponse
impl Clone for ApplicationsResponse
Source§fn clone(&self) -> ApplicationsResponse
fn clone(&self) -> ApplicationsResponse
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 ApplicationsResponse
impl Debug for ApplicationsResponse
Source§impl<'de> Deserialize<'de> for ApplicationsResponse
impl<'de> Deserialize<'de> for ApplicationsResponse
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
Auto Trait Implementations§
impl Freeze for ApplicationsResponse
impl RefUnwindSafe for ApplicationsResponse
impl Send for ApplicationsResponse
impl Sync for ApplicationsResponse
impl Unpin for ApplicationsResponse
impl UnwindSafe for ApplicationsResponse
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