pub struct ThreadCreateOptions {
pub name: String,
pub ephemeral: bool,
pub ttl_secs: Option<u32>,
}Expand description
Caller-supplied create inputs for pure preflight planning.
Fields§
§name: String§ephemeral: bool§ttl_secs: Option<u32>Trait Implementations§
Source§impl Clone for ThreadCreateOptions
impl Clone for ThreadCreateOptions
Source§fn clone(&self) -> ThreadCreateOptions
fn clone(&self) -> ThreadCreateOptions
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 ThreadCreateOptions
impl Debug for ThreadCreateOptions
impl Eq for ThreadCreateOptions
Source§impl PartialEq for ThreadCreateOptions
impl PartialEq for ThreadCreateOptions
impl StructuralPartialEq for ThreadCreateOptions
Auto Trait Implementations§
impl Freeze for ThreadCreateOptions
impl RefUnwindSafe for ThreadCreateOptions
impl Send for ThreadCreateOptions
impl Sync for ThreadCreateOptions
impl Unpin for ThreadCreateOptions
impl UnsafeUnpin for ThreadCreateOptions
impl UnwindSafe for ThreadCreateOptions
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