[][src]Trait git2::transport::SmartSubtransportStream

pub trait SmartSubtransportStream: Read + Write + Send + 'static { }

An instance of a stream over which a smart transport will communicate with a remote.

Currently this only requires the standard Read and Write traits. This trait also does not need to be implemented manually as long as the Read and Write traits are implemented.

Implementors

impl<T: Read + Write + Send + 'static> SmartSubtransportStream for T
[src]

Loading content...