pub enum LinkCreator {
Auto,
User,
}Expand description
Indicates how a session link was created.
Variants§
Auto
Automatically created by time and file overlap heuristics.
User
Manually created by a user via CLI command.
Trait Implementations§
Source§impl Clone for LinkCreator
impl Clone for LinkCreator
Source§fn clone(&self) -> LinkCreator
fn clone(&self) -> LinkCreator
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 LinkCreator
impl Debug for LinkCreator
Source§impl<'de> Deserialize<'de> for LinkCreator
impl<'de> Deserialize<'de> for LinkCreator
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LinkCreator
impl PartialEq for LinkCreator
Source§impl Serialize for LinkCreator
impl Serialize for LinkCreator
impl StructuralPartialEq for LinkCreator
Auto Trait Implementations§
impl Freeze for LinkCreator
impl RefUnwindSafe for LinkCreator
impl Send for LinkCreator
impl Sync for LinkCreator
impl Unpin for LinkCreator
impl UnwindSafe for LinkCreator
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