pub struct ApplicationResponse {
pub application: Option<Box<Application>>,
pub applications: Option<Vec<Application>>,
pub role: Option<Box<ApplicationRole>>,
}
Expand description
ApplicationResponse : The Application API response.
Fields§
§application: Option<Box<Application>>
§applications: Option<Vec<Application>>
§role: Option<Box<ApplicationRole>>
Implementations§
source§impl ApplicationResponse
impl ApplicationResponse
sourcepub fn new() -> ApplicationResponse
pub fn new() -> ApplicationResponse
The Application API response.
Trait Implementations§
source§impl Clone for ApplicationResponse
impl Clone for ApplicationResponse
source§fn clone(&self) -> ApplicationResponse
fn clone(&self) -> ApplicationResponse
Returns a copy 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 ApplicationResponse
impl Debug for ApplicationResponse
source§impl Default for ApplicationResponse
impl Default for ApplicationResponse
source§fn default() -> ApplicationResponse
fn default() -> ApplicationResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ApplicationResponse
impl<'de> Deserialize<'de> for ApplicationResponse
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 ApplicationResponse
impl PartialEq for ApplicationResponse
source§fn eq(&self, other: &ApplicationResponse) -> bool
fn eq(&self, other: &ApplicationResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ApplicationResponse
impl Serialize for ApplicationResponse
impl StructuralPartialEq for ApplicationResponse
Auto Trait Implementations§
impl RefUnwindSafe for ApplicationResponse
impl Send for ApplicationResponse
impl Sync for ApplicationResponse
impl Unpin for ApplicationResponse
impl UnwindSafe for ApplicationResponse
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