pub struct GetApplicationResponse {
pub app_id: String,
pub kind: String,
pub org_id: String,
pub expected_rp_id: Option<String>,
pub name: String,
pub is_active: bool,
pub expected_origin: Option<String>,
pub permission_assignments: Vec<Value>,
pub access_tokens: Vec<PersonalAccessToken>,
}Expand description
Get Application
Fields§
§app_id: String§kind: String§org_id: String§expected_rp_id: Option<String>§name: String§is_active: bool§expected_origin: Option<String>§permission_assignments: Vec<Value>§access_tokens: Vec<PersonalAccessToken>Trait Implementations§
Source§impl Clone for GetApplicationResponse
impl Clone for GetApplicationResponse
Source§fn clone(&self) -> GetApplicationResponse
fn clone(&self) -> GetApplicationResponse
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 GetApplicationResponse
impl Debug for GetApplicationResponse
Source§impl<'de> Deserialize<'de> for GetApplicationResponse
impl<'de> Deserialize<'de> for GetApplicationResponse
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 GetApplicationResponse
impl RefUnwindSafe for GetApplicationResponse
impl Send for GetApplicationResponse
impl Sync for GetApplicationResponse
impl Unpin for GetApplicationResponse
impl UnsafeUnpin for GetApplicationResponse
impl UnwindSafe for GetApplicationResponse
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