pub struct ReceivePackFeatures {
pub report_status: bool,
pub report_status_v2: bool,
pub delete_refs: bool,
pub ofs_delta: bool,
pub atomic: bool,
pub push_options: bool,
pub side_band_64k: bool,
pub quiet: bool,
pub no_thin: bool,
pub agent: Option<String>,
pub object_format: Option<ObjectFormat>,
pub unknown: Vec<Capability>,
}Fields§
§report_status: bool§report_status_v2: bool§delete_refs: bool§ofs_delta: bool§atomic: bool§push_options: bool§side_band_64k: bool§quiet: bool§no_thin: bool§agent: Option<String>§object_format: Option<ObjectFormat>§unknown: Vec<Capability>Trait Implementations§
Source§impl Clone for ReceivePackFeatures
impl Clone for ReceivePackFeatures
Source§fn clone(&self) -> ReceivePackFeatures
fn clone(&self) -> ReceivePackFeatures
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 ReceivePackFeatures
impl Debug for ReceivePackFeatures
Source§impl Default for ReceivePackFeatures
impl Default for ReceivePackFeatures
Source§fn default() -> ReceivePackFeatures
fn default() -> ReceivePackFeatures
Returns the “default value” for a type. Read more
impl Eq for ReceivePackFeatures
Source§impl PartialEq for ReceivePackFeatures
impl PartialEq for ReceivePackFeatures
Source§fn eq(&self, other: &ReceivePackFeatures) -> bool
fn eq(&self, other: &ReceivePackFeatures) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReceivePackFeatures
Auto Trait Implementations§
impl Freeze for ReceivePackFeatures
impl RefUnwindSafe for ReceivePackFeatures
impl Send for ReceivePackFeatures
impl Sync for ReceivePackFeatures
impl Unpin for ReceivePackFeatures
impl UnsafeUnpin for ReceivePackFeatures
impl UnwindSafe for ReceivePackFeatures
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