use crate::Remote;
pub(crate) struct HandshakeWithRefs {
outcome: gix_protocol::handshake::Outcome,
refs: Vec<gix_protocol::handshake::Ref>,
}
pub type AuthenticateFn<'a> = Box<dyn FnMut(gix_credentials::helper::Action) -> gix_credentials::protocol::Result + 'a>;
pub struct Connection<'a, 'repo, T> {
pub(crate) remote: &'a Remote<'repo>,
pub(crate) authenticate: Option<AuthenticateFn<'a>>,
pub(crate) transport_options: Option<Box<dyn std::any::Any>>,
pub(crate) transport: T,
pub(crate) trace: bool,
}
mod access;
#[allow(clippy::empty_docs)]
pub mod ref_map;
#[allow(clippy::empty_docs)]
pub mod fetch;