pub struct SettingsBuilder<'a, S: State> { /* private fields */ }Expand description
Builder for constructing an instance of this type
Implementations§
Source§impl<'a> SettingsBuilder<'a, Empty>
impl<'a> SettingsBuilder<'a, Empty>
Source§impl<'a, S: State> SettingsBuilder<'a, S>
impl<'a, S: State> SettingsBuilder<'a, S>
Sourcepub fn debug_recording(self, value: impl Into<Option<bool>>) -> Self
pub fn debug_recording(self, value: impl Into<Option<bool>>) -> Self
Set the debugRecording field (optional)
Sourcepub fn maybe_debug_recording(self, value: Option<bool>) -> Self
pub fn maybe_debug_recording(self, value: Option<bool>) -> Self
Set the debugRecording field to an Option value (optional)
Auto Trait Implementations§
impl<'a, S> Freeze for SettingsBuilder<'a, S>
impl<'a, S> RefUnwindSafe for SettingsBuilder<'a, S>
impl<'a, S> Send for SettingsBuilder<'a, S>
impl<'a, S> Sync for SettingsBuilder<'a, S>
impl<'a, S> Unpin for SettingsBuilder<'a, S>
impl<'a, S> UnsafeUnpin for SettingsBuilder<'a, S>
impl<'a, S> UnwindSafe for SettingsBuilder<'a, S>
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