Enum git_transport::client::git::ConnectMode
source · pub enum ConnectMode {
Daemon,
Process,
}
Available on crate features
blocking-client
or async-client
only.Expand description
The way to connect to a process speaking the git
protocol.
Variants
Daemon
A git daemon.
Process
A spawned git
process to upload a pack to the client.
Trait Implementations
sourceimpl Clone for ConnectMode
impl Clone for ConnectMode
sourcefn clone(&self) -> ConnectMode
fn clone(&self) -> ConnectMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<ConnectMode> for ConnectMode
impl PartialEq<ConnectMode> for ConnectMode
sourcefn eq(&self, other: &ConnectMode) -> bool
fn eq(&self, other: &ConnectMode) -> bool
impl Copy for ConnectMode
impl Eq for ConnectMode
impl StructuralEq for ConnectMode
impl StructuralPartialEq for ConnectMode
Auto Trait Implementations
impl RefUnwindSafe for ConnectMode
impl Send for ConnectMode
impl Sync for ConnectMode
impl Unpin for ConnectMode
impl UnwindSafe for ConnectMode
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