pub struct BootstrapOptions {
pub resume_loop_id: Option<String>,
pub workspace: Option<String>,
pub user_id: Option<String>,
pub client_workspace_id: Option<String>,
pub stream_delivery: String,
pub is_ephemeral: bool,
}Expand description
Options for bootstrap_loop_session.
Fields§
§resume_loop_id: Option<String>Resume an existing loop id (skip loop_new).
workspace: Option<String>Workspace path (client_workspace).
user_id: Option<String>User id.
client_workspace_id: Option<String>Client workspace id.
stream_delivery: StringStream delivery mode.
is_ephemeral: boolEphemeral loop flag.
Implementations§
Trait Implementations§
Source§impl Clone for BootstrapOptions
impl Clone for BootstrapOptions
Source§fn clone(&self) -> BootstrapOptions
fn clone(&self) -> BootstrapOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BootstrapOptions
impl Debug for BootstrapOptions
Source§impl Default for BootstrapOptions
impl Default for BootstrapOptions
Source§fn default() -> BootstrapOptions
fn default() -> BootstrapOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BootstrapOptions
impl RefUnwindSafe for BootstrapOptions
impl Send for BootstrapOptions
impl Sync for BootstrapOptions
impl Unpin for BootstrapOptions
impl UnsafeUnpin for BootstrapOptions
impl UnwindSafe for BootstrapOptions
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