pub struct Core;Expand description
The Core sub-section.
Implementations§
Source§impl Core
impl Core
Sourcepub const DEFAULT_PACK_CACHE_MEMORY_LIMIT: UnsignedInteger
pub const DEFAULT_PACK_CACHE_MEMORY_LIMIT: UnsignedInteger
The gitoxide.core.defaultPackCacheMemoryLimit key.
Sourcepub const PROTECT_WINDOWS: Boolean
pub const PROTECT_WINDOWS: Boolean
The gitoxide.core.protectWindows key.
Sourcepub const SHALLOW_FILE: Path
pub const SHALLOW_FILE: Path
The gitoxide.core.shallowFile key.
Sourcepub const FILTER_PROCESS_DELAY: Boolean
pub const FILTER_PROCESS_DELAY: Boolean
The gitoxide.core.filterProcessDelay key (default true).
It controls whether or not long running filter driver processes can use the ‘delay’ capability.
Sourcepub const EXTERNAL_COMMAND_STDERR: Boolean
pub const EXTERNAL_COMMAND_STDERR: Boolean
The gitoxide.core.externalCommandStderr key (default true).
If true, the default, stderr of worktree filter programs, or any other git-context bearing command
invoked will be inherited.
If false, it will be suppressed completely.
Sourcepub const REFS_NAMESPACE: Any<RefsNamespace>
pub const REFS_NAMESPACE: Any<RefsNamespace>
The gitoxide.core.refsNamespace key.
Trait Implementations§
Source§impl Section for Core
impl Section for Core
Source§fn keys(&self) -> &[&dyn Key]
fn keys(&self) -> &[&dyn Key]
The keys directly underneath it for carrying configuration values.
Source§fn parent(&self) -> Option<&dyn Section>
fn parent(&self) -> Option<&dyn Section>
The parent section if this is a statically known sub-section.
Source§fn sub_sections(&self) -> &[&dyn Section]
fn sub_sections(&self) -> &[&dyn Section]
The list of sub-section names, which may be empty if there are no statically known sub-sections.
impl Copy for Core
Auto Trait Implementations§
impl Freeze for Core
impl RefUnwindSafe for Core
impl Send for Core
impl Sync for Core
impl Unpin for Core
impl UnwindSafe for Core
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