pub enum KeepHistory {
NoKeepHistory = 0,
KeepHistory = 1,
}Variants§
NoKeepHistory = 0
Do not keep the history of the conversation.
KeepHistory = 1
Keep the history of the conversation.
Trait Implementations§
Source§impl Clone for KeepHistory
impl Clone for KeepHistory
Source§fn clone(&self) -> KeepHistory
fn clone(&self) -> KeepHistory
Returns a duplicate of the value. Read more
1.0.0 · 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 KeepHistory
impl Debug for KeepHistory
Source§impl Default for KeepHistory
impl Default for KeepHistory
Source§fn default() -> KeepHistory
fn default() -> KeepHistory
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for KeepHistory
impl RefUnwindSafe for KeepHistory
impl Send for KeepHistory
impl Sync for KeepHistory
impl Unpin for KeepHistory
impl UnwindSafe for KeepHistory
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