Enum git_transport::client::MessageKind [−][src]
pub enum MessageKind { Flush, Delimiter, ResponseEnd, Text(&'static [u8]), }
The kind of packet line to write when transforming a RequestWriter
into an ExtendedBufRead
.
Variants
A flush
packet.
A V2 delimiter.
The end of a response.
Text(&'static [u8])
The given text.
Trait Implementations
impl Clone for MessageKind
[src]
impl Clone for MessageKind
[src]fn clone(&self) -> MessageKind
[src]
fn clone(&self) -> MessageKind
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for MessageKind
[src]
impl Debug for MessageKind
[src]impl Hash for MessageKind
[src]
impl Hash for MessageKind
[src]impl Ord for MessageKind
[src]
impl Ord for MessageKind
[src]impl PartialEq<MessageKind> for MessageKind
[src]
impl PartialEq<MessageKind> for MessageKind
[src]fn eq(&self, other: &MessageKind) -> bool
[src]
fn eq(&self, other: &MessageKind) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &MessageKind) -> bool
[src]
fn ne(&self, other: &MessageKind) -> bool
[src]This method tests for !=
.
impl PartialOrd<MessageKind> for MessageKind
[src]
impl PartialOrd<MessageKind> for MessageKind
[src]fn partial_cmp(&self, other: &MessageKind) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &MessageKind) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for MessageKind
[src]
impl Eq for MessageKind
[src]
impl StructuralEq for MessageKind
[src]
impl StructuralPartialEq for MessageKind
[src]
Auto Trait Implementations
impl RefUnwindSafe for MessageKind
impl Send for MessageKind
impl Sync for MessageKind
impl Unpin for MessageKind
impl UnwindSafe for MessageKind
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more