pub struct MlCellarConfig {
pub use_custom_transfer_agent: bool,
}Expand description
Configuration specific to ml-cellar behavior.
Fields§
§use_custom_transfer_agent: boolWhether to use a custom transfer agent for Git LFS (e.g., for AWS S3 backend).
When enabled, ml-cellar can use alternative storage backends instead of the default Git LFS storage.
Trait Implementations§
Source§impl Debug for MlCellarConfig
impl Debug for MlCellarConfig
Source§impl Default for MlCellarConfig
impl Default for MlCellarConfig
Source§fn default() -> MlCellarConfig
fn default() -> MlCellarConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MlCellarConfigwhere
MlCellarConfig: Default,
impl<'de> Deserialize<'de> for MlCellarConfigwhere
MlCellarConfig: Default,
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
Auto Trait Implementations§
impl Freeze for MlCellarConfig
impl RefUnwindSafe for MlCellarConfig
impl Send for MlCellarConfig
impl Sync for MlCellarConfig
impl Unpin for MlCellarConfig
impl UnwindSafe for MlCellarConfig
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