pub struct AppDetails {
pub app_name: Option<String>,
pub app_type: Option<String>,
pub creation_time: Option<f64>,
pub domain_id: Option<String>,
pub status: Option<String>,
pub user_profile_name: Option<String>,
}
Expand description
The app's details.
Fields§
§app_name: Option<String>
The name of the app.
app_type: Option<String>
The type of app.
creation_time: Option<f64>
The creation time.
domain_id: Option<String>
The domain ID.
status: Option<String>
The status.
user_profile_name: Option<String>
The user profile name.
Trait Implementations§
Source§impl Clone for AppDetails
impl Clone for AppDetails
Source§fn clone(&self) -> AppDetails
fn clone(&self) -> AppDetails
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 AppDetails
impl Debug for AppDetails
Source§impl Default for AppDetails
impl Default for AppDetails
Source§fn default() -> AppDetails
fn default() -> AppDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppDetails
impl<'de> Deserialize<'de> for AppDetails
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 AppDetails
impl PartialEq for AppDetails
impl StructuralPartialEq for AppDetails
Auto Trait Implementations§
impl Freeze for AppDetails
impl RefUnwindSafe for AppDetails
impl Send for AppDetails
impl Sync for AppDetails
impl Unpin for AppDetails
impl UnwindSafe for AppDetails
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