pub struct Limits {
pub max_object_bytes: usize,
pub max_delta_depth: usize,
pub max_ref_depth: usize,
pub max_tree_depth: usize,
pub max_tree_entries: usize,
pub max_history_commits: usize,
pub max_parents: usize,
pub object_cache_bytes: usize,
pub delta_cache_bytes: usize,
pub max_bitmap_objects: usize,
pub max_reflog_entries: usize,
pub max_index_entries: usize,
}Fields§
§max_object_bytes: usize§max_delta_depth: usize§max_ref_depth: usize§max_tree_depth: usize§max_tree_entries: usize§max_history_commits: usize§max_parents: usize§object_cache_bytes: usize§delta_cache_bytes: usize§max_bitmap_objects: usize§max_reflog_entries: usize§max_index_entries: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Limits
impl RefUnwindSafe for Limits
impl Send for Limits
impl Sync for Limits
impl Unpin for Limits
impl UnsafeUnpin for Limits
impl UnwindSafe for Limits
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