pub struct TopicTransition {
pub from_topic: String,
pub to_topic: String,
pub message_index: usize,
pub transition_keyword: String,
}Expand description
Records when the conversation topic changed.
Fields§
§from_topic: String§to_topic: String§message_index: usize§transition_keyword: StringTrait Implementations§
Source§impl Clone for TopicTransition
impl Clone for TopicTransition
Source§fn clone(&self) -> TopicTransition
fn clone(&self) -> TopicTransition
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 moreAuto Trait Implementations§
impl Freeze for TopicTransition
impl RefUnwindSafe for TopicTransition
impl Send for TopicTransition
impl Sync for TopicTransition
impl Unpin for TopicTransition
impl UnsafeUnpin for TopicTransition
impl UnwindSafe for TopicTransition
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