#[non_exhaustive]pub struct UpdateThemeForStackInput {
pub stack_name: Option<String>,
pub footer_links: Option<Vec<ThemeFooterLink>>,
pub title_text: Option<String>,
pub theme_styling: Option<ThemeStyling>,
pub organization_logo_s3_location: Option<S3Location>,
pub favicon_s3_location: Option<S3Location>,
pub state: Option<ThemeState>,
pub attributes_to_delete: Option<Vec<ThemeAttribute>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.stack_name: Option<String>
The name of the stack for the theme.
The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.
title_text: Option<String>
The title that is displayed at the top of the browser tab during users' application streaming sessions.
theme_styling: Option<ThemeStyling>
The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.
organization_logo_s3_location: Option<S3Location>
The organization logo that appears on the streaming application catalog page.
favicon_s3_location: Option<S3Location>
The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.
state: Option<ThemeState>
Specifies whether custom branding should be applied to catalog page or not.
attributes_to_delete: Option<Vec<ThemeAttribute>>
The attributes to delete.
Implementations§
source§impl UpdateThemeForStackInput
impl UpdateThemeForStackInput
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The name of the stack for the theme.
The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .footer_links.is_none()
.
sourcepub fn title_text(&self) -> Option<&str>
pub fn title_text(&self) -> Option<&str>
The title that is displayed at the top of the browser tab during users' application streaming sessions.
sourcepub fn theme_styling(&self) -> Option<&ThemeStyling>
pub fn theme_styling(&self) -> Option<&ThemeStyling>
The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.
sourcepub fn organization_logo_s3_location(&self) -> Option<&S3Location>
pub fn organization_logo_s3_location(&self) -> Option<&S3Location>
The organization logo that appears on the streaming application catalog page.
sourcepub fn favicon_s3_location(&self) -> Option<&S3Location>
pub fn favicon_s3_location(&self) -> Option<&S3Location>
The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.
sourcepub fn state(&self) -> Option<&ThemeState>
pub fn state(&self) -> Option<&ThemeState>
Specifies whether custom branding should be applied to catalog page or not.
sourcepub fn attributes_to_delete(&self) -> &[ThemeAttribute]
pub fn attributes_to_delete(&self) -> &[ThemeAttribute]
The attributes to delete.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .attributes_to_delete.is_none()
.
source§impl UpdateThemeForStackInput
impl UpdateThemeForStackInput
sourcepub fn builder() -> UpdateThemeForStackInputBuilder
pub fn builder() -> UpdateThemeForStackInputBuilder
Creates a new builder-style object to manufacture UpdateThemeForStackInput
.
Trait Implementations§
source§impl Clone for UpdateThemeForStackInput
impl Clone for UpdateThemeForStackInput
source§fn clone(&self) -> UpdateThemeForStackInput
fn clone(&self) -> UpdateThemeForStackInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateThemeForStackInput
impl Debug for UpdateThemeForStackInput
source§impl PartialEq for UpdateThemeForStackInput
impl PartialEq for UpdateThemeForStackInput
impl StructuralPartialEq for UpdateThemeForStackInput
Auto Trait Implementations§
impl Freeze for UpdateThemeForStackInput
impl RefUnwindSafe for UpdateThemeForStackInput
impl Send for UpdateThemeForStackInput
impl Sync for UpdateThemeForStackInput
impl Unpin for UpdateThemeForStackInput
impl UnwindSafe for UpdateThemeForStackInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more