pub struct ApplicationSettings {
pub enabled: bool,
pub settings_group: Option<String>,
}Expand description
The persistent application settings for users of a stack.
Fields§
§enabled: boolEnables or disables persistent application settings for users during their streaming sessions.
settings_group: Option<String>The path prefix for the S3 bucket where users’ persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack.
Trait Implementations§
Source§impl Clone for ApplicationSettings
impl Clone for ApplicationSettings
Source§fn clone(&self) -> ApplicationSettings
fn clone(&self) -> ApplicationSettings
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 ApplicationSettings
impl Debug for ApplicationSettings
Source§impl Default for ApplicationSettings
impl Default for ApplicationSettings
Source§fn default() -> ApplicationSettings
fn default() -> ApplicationSettings
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplicationSettings
impl PartialEq for ApplicationSettings
Source§impl Serialize for ApplicationSettings
impl Serialize for ApplicationSettings
impl StructuralPartialEq for ApplicationSettings
Auto Trait Implementations§
impl Freeze for ApplicationSettings
impl RefUnwindSafe for ApplicationSettings
impl Send for ApplicationSettings
impl Sync for ApplicationSettings
impl Unpin for ApplicationSettings
impl UnwindSafe for ApplicationSettings
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