pub struct StorageOptions {
pub codex_home: Option<PathBuf>,
pub auth_file: Option<PathBuf>,
pub profile_store_dir: Option<PathBuf>,
pub account_history_file: Option<PathBuf>,
pub sessions_dir: Option<PathBuf>,
}Fields§
§codex_home: Option<PathBuf>§auth_file: Option<PathBuf>§profile_store_dir: Option<PathBuf>§account_history_file: Option<PathBuf>§sessions_dir: Option<PathBuf>Trait Implementations§
Source§impl Clone for StorageOptions
impl Clone for StorageOptions
Source§fn clone(&self) -> StorageOptions
fn clone(&self) -> StorageOptions
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 moreSource§impl Debug for StorageOptions
impl Debug for StorageOptions
Source§impl Default for StorageOptions
impl Default for StorageOptions
Source§fn default() -> StorageOptions
fn default() -> StorageOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for StorageOptions
impl PartialEq for StorageOptions
Source§fn eq(&self, other: &StorageOptions) -> bool
fn eq(&self, other: &StorageOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StorageOptions
impl StructuralPartialEq for StorageOptions
Auto Trait Implementations§
impl Freeze for StorageOptions
impl RefUnwindSafe for StorageOptions
impl Send for StorageOptions
impl Sync for StorageOptions
impl Unpin for StorageOptions
impl UnsafeUnpin for StorageOptions
impl UnwindSafe for StorageOptions
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