pub struct ThreadMoveOutput {
pub from_thread: String,
pub to_thread: String,
pub moved_paths: Vec<String>,
pub source_change_id: Option<String>,
pub target_change_id: String,
pub message: String,
}Fields§
§from_thread: String§to_thread: String§moved_paths: Vec<String>§source_change_id: Option<String>§target_change_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
Auto 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