pub struct PatchedApplicationRequest {
pub name: Option<String>,
pub slug: Option<String>,
pub provider: Option<Option<i32>>,
pub backchannel_providers: Option<Vec<i32>>,
pub open_in_new_tab: Option<bool>,
pub meta_launch_url: Option<String>,
pub meta_description: Option<String>,
pub meta_publisher: Option<String>,
pub policy_engine_mode: Option<PolicyEngineMode>,
pub group: Option<String>,
}
Expand description
PatchedApplicationRequest : Application Serializer
Fields§
§name: Option<String>
Application’s display Name.
slug: Option<String>
Internal application name, used in URLs.
provider: Option<Option<i32>>
§backchannel_providers: Option<Vec<i32>>
§open_in_new_tab: Option<bool>
Open launch URL in a new browser tab or window.
meta_launch_url: Option<String>
§meta_description: Option<String>
§meta_publisher: Option<String>
§policy_engine_mode: Option<PolicyEngineMode>
§group: Option<String>
Implementations§
Source§impl PatchedApplicationRequest
impl PatchedApplicationRequest
Sourcepub fn new() -> PatchedApplicationRequest
pub fn new() -> PatchedApplicationRequest
Application Serializer
Trait Implementations§
Source§impl Clone for PatchedApplicationRequest
impl Clone for PatchedApplicationRequest
Source§fn clone(&self) -> PatchedApplicationRequest
fn clone(&self) -> PatchedApplicationRequest
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 PatchedApplicationRequest
impl Debug for PatchedApplicationRequest
Source§impl Default for PatchedApplicationRequest
impl Default for PatchedApplicationRequest
Source§fn default() -> PatchedApplicationRequest
fn default() -> PatchedApplicationRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedApplicationRequest
impl<'de> Deserialize<'de> for PatchedApplicationRequest
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
impl StructuralPartialEq for PatchedApplicationRequest
Auto Trait Implementations§
impl Freeze for PatchedApplicationRequest
impl RefUnwindSafe for PatchedApplicationRequest
impl Send for PatchedApplicationRequest
impl Sync for PatchedApplicationRequest
impl Unpin for PatchedApplicationRequest
impl UnwindSafe for PatchedApplicationRequest
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