pub enum GitStorageMethod {
PlatformApi,
Native,
None,
}Variants§
PlatformApi
Native
Store sessions as git objects on an orphan branch (no external API needed).
None
Trait Implementations§
Source§impl Clone for GitStorageMethod
impl Clone for GitStorageMethod
Source§fn clone(&self) -> GitStorageMethod
fn clone(&self) -> GitStorageMethod
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 GitStorageMethod
impl Debug for GitStorageMethod
Source§impl Default for GitStorageMethod
impl Default for GitStorageMethod
Source§fn default() -> GitStorageMethod
fn default() -> GitStorageMethod
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitStorageMethod
impl<'de> Deserialize<'de> for GitStorageMethod
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 GitStorageMethod
impl PartialEq for GitStorageMethod
Source§impl Serialize for GitStorageMethod
impl Serialize for GitStorageMethod
impl StructuralPartialEq for GitStorageMethod
Auto Trait Implementations§
impl Freeze for GitStorageMethod
impl RefUnwindSafe for GitStorageMethod
impl Send for GitStorageMethod
impl Sync for GitStorageMethod
impl Unpin for GitStorageMethod
impl UnwindSafe for GitStorageMethod
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