pub trait Transport: Send + Sync {
// Required method
fn get(&self, url: &str) -> Result<TransportResponse, TransportError>;
}Expand description
Blocking GET-only transport used by [crate::http_sync_api::HttpTreeSyncApi].
pub trait Transport: Send + Sync {
// Required method
fn get(&self, url: &str) -> Result<TransportResponse, TransportError>;
}Blocking GET-only transport used by [crate::http_sync_api::HttpTreeSyncApi].