Enum git_transport::client::WriteMode  
source · [−]pub enum WriteMode {
    Binary,
    OneLfTerminatedLinePerWriteCall,
}Expand description
Configure how the RequestWriter behaves when writing bytes.
Variants
Binary
Each write() call writes the bytes verbatim as one or more packet lines.
OneLfTerminatedLinePerWriteCall
Each write() call assumes text in the input, assures a trailing newline and writes it as single packet line.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for WriteMode
 
impl<'de> Deserialize<'de> for WriteMode
sourcefn 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
sourceimpl Ord for WriteMode
 
impl Ord for WriteMode
1.21.0 · sourcefn max(self, other: Self) -> Self
 
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
 
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: PartialOrd<Self>,
 
fn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<WriteMode> for WriteMode
 
impl PartialOrd<WriteMode> for WriteMode
sourcefn partial_cmp(&self, other: &WriteMode) -> Option<Ordering>
 
fn partial_cmp(&self, other: &WriteMode) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreimpl Copy for WriteMode
impl Eq for WriteMode
impl StructuralEq for WriteMode
impl StructuralPartialEq for WriteMode
Auto Trait Implementations
impl RefUnwindSafe for WriteMode
impl Send for WriteMode
impl Sync for WriteMode
impl Unpin for WriteMode
impl UnwindSafe for WriteMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more