pub struct UploadPackFeatures {Show 19 fields
pub multi_ack: bool,
pub multi_ack_detailed: bool,
pub no_done: bool,
pub thin_pack: bool,
pub side_band: bool,
pub side_band_64k: bool,
pub ofs_delta: bool,
pub shallow: bool,
pub deepen_since: bool,
pub deepen_not: bool,
pub include_tag: bool,
pub no_progress: bool,
pub allow_tip_sha1_in_want: bool,
pub allow_reachable_sha1_in_want: bool,
pub filter: bool,
pub agent: Option<String>,
pub object_format: Option<ObjectFormat>,
pub symrefs: Vec<String>,
pub unknown: Vec<Capability>,
}Fields§
§multi_ack: bool§multi_ack_detailed: bool§no_done: bool§thin_pack: bool§side_band: bool§side_band_64k: bool§ofs_delta: bool§shallow: bool§deepen_since: bool§deepen_not: bool§include_tag: bool§no_progress: bool§allow_tip_sha1_in_want: bool§allow_reachable_sha1_in_want: bool§filter: bool§agent: Option<String>§object_format: Option<ObjectFormat>§symrefs: Vec<String>§unknown: Vec<Capability>Trait Implementations§
Source§impl Clone for UploadPackFeatures
impl Clone for UploadPackFeatures
Source§fn clone(&self) -> UploadPackFeatures
fn clone(&self) -> UploadPackFeatures
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 UploadPackFeatures
impl Debug for UploadPackFeatures
Source§impl Default for UploadPackFeatures
impl Default for UploadPackFeatures
Source§fn default() -> UploadPackFeatures
fn default() -> UploadPackFeatures
Returns the “default value” for a type. Read more
impl Eq for UploadPackFeatures
Source§impl PartialEq for UploadPackFeatures
impl PartialEq for UploadPackFeatures
Source§fn eq(&self, other: &UploadPackFeatures) -> bool
fn eq(&self, other: &UploadPackFeatures) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UploadPackFeatures
Auto Trait Implementations§
impl Freeze for UploadPackFeatures
impl RefUnwindSafe for UploadPackFeatures
impl Send for UploadPackFeatures
impl Sync for UploadPackFeatures
impl Unpin for UploadPackFeatures
impl UnsafeUnpin for UploadPackFeatures
impl UnwindSafe for UploadPackFeatures
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