pub enum ArchiveMode {
Always,
Manual,
}
Expand description
Determines whether a session is automatically archived or not. Archiving is currently unsupported.
Variants§
Always
The session will always be archived automatically.
Manual
A POST request to /archive is required to archive the session. Currently unsupported.
Trait Implementations§
Source§impl Debug for ArchiveMode
impl Debug for ArchiveMode
Auto Trait Implementations§
impl Freeze for ArchiveMode
impl RefUnwindSafe for ArchiveMode
impl Send for ArchiveMode
impl Sync for ArchiveMode
impl Unpin for ArchiveMode
impl UnwindSafe for ArchiveMode
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