pub struct Application {Show 15 fields
pub pk: Uuid,
pub name: String,
pub slug: String,
pub provider: Option<Option<i32>>,
pub provider_obj: Box<Provider>,
pub backchannel_providers: Option<Vec<i32>>,
pub backchannel_providers_obj: Vec<Provider>,
pub launch_url: Option<String>,
pub open_in_new_tab: Option<bool>,
pub meta_launch_url: Option<String>,
pub meta_icon: Option<String>,
pub meta_description: Option<String>,
pub meta_publisher: Option<String>,
pub policy_engine_mode: Option<PolicyEngineMode>,
pub group: Option<String>,
}
Expand description
Application : Application Serializer
Fields§
§pk: Uuid
§name: String
Application’s display Name.
slug: String
Internal application name, used in URLs.
provider: Option<Option<i32>>
§provider_obj: Box<Provider>
§backchannel_providers: Option<Vec<i32>>
§backchannel_providers_obj: Vec<Provider>
§launch_url: Option<String>
Allow formatting of launch URL
open_in_new_tab: Option<bool>
Open launch URL in a new browser tab or window.
meta_launch_url: Option<String>
§meta_icon: Option<String>
Get the URL to the App Icon image. If the name is /static or starts with http it is returned as-is
meta_description: Option<String>
§meta_publisher: Option<String>
§policy_engine_mode: Option<PolicyEngineMode>
§group: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
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 Application
impl Debug for Application
Source§impl Default for Application
impl Default for Application
Source§fn default() -> Application
fn default() -> Application
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Application
impl<'de> Deserialize<'de> for Application
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 Application
impl PartialEq for Application
Source§impl Serialize for Application
impl Serialize for Application
impl StructuralPartialEq for Application
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
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