pub struct ThreadMoveOutput {
pub from_thread: String,
pub to_thread: String,
pub moved_paths: Vec<String>,
pub source_state_id: Option<String>,
pub target_state_id: String,
pub message: String,
}Fields§
§from_thread: String§to_thread: String§moved_paths: Vec<String>§source_state_id: Option<String>§target_state_id: String§message: StringTrait Implementations§
Source§impl Clone for ThreadMoveOutput
impl Clone for ThreadMoveOutput
Source§fn clone(&self) -> ThreadMoveOutput
fn clone(&self) -> ThreadMoveOutput
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 ThreadMoveOutput
impl Debug for ThreadMoveOutput
Source§impl JsonSchema for ThreadMoveOutput
impl JsonSchema for ThreadMoveOutput
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ThreadMoveOutput
impl RefUnwindSafe for ThreadMoveOutput
impl Send for ThreadMoveOutput
impl Sync for ThreadMoveOutput
impl Unpin for ThreadMoveOutput
impl UnsafeUnpin for ThreadMoveOutput
impl UnwindSafe for ThreadMoveOutput
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