Struct Http
pub struct Http {
config: HttpConfig,
http_client: Option<HttpClient>,
}
Expand description
HTTP Read-only service support like Nginx and Caddy.
§Capabilities
This service can be used to:
- stat
- read
-
write -
create_dir -
delete -
copy -
rename -
list -
presign - blocking
§Notes
Only read
and stat
are supported. We can use this service to visit any
HTTP Server like nginx, caddy.
§Configuration
endpoint
: set the endpoint for httproot
: Set the work directory for backend
You can refer to HttpBuilder
’s docs for more information
§Example
§Via Builder
use anyhow::Result;
use opendal::services::Http;
use opendal::Operator;
#[tokio::main]
async fn main() -> Result<()> {
// create http backend builder
let mut builder = Http::default().endpoint("127.0.0.1");
let op: Operator = Operator::new(builder)?.finish();
Ok(())
}
Fields§
§config: HttpConfig
§http_client: Option<HttpClient>
Implementations§
§impl HttpBuilder
impl HttpBuilder
pub fn endpoint(self, endpoint: &str) -> HttpBuilder
pub fn endpoint(self, endpoint: &str) -> HttpBuilder
Set endpoint for http backend.
For example: https://example.com
pub fn username(self, username: &str) -> HttpBuilder
pub fn username(self, username: &str) -> HttpBuilder
set username for http backend
default: no username
pub fn password(self, password: &str) -> HttpBuilder
pub fn password(self, password: &str) -> HttpBuilder
set password for http backend
default: no password
pub fn token(self, token: &str) -> HttpBuilder
pub fn token(self, token: &str) -> HttpBuilder
set bearer token for http backend
default: no access token
pub fn root(self, root: &str) -> HttpBuilder
pub fn root(self, root: &str) -> HttpBuilder
Set root path of http backend.
pub fn http_client(self, client: HttpClient) -> HttpBuilder
pub fn http_client(self, client: HttpClient) -> HttpBuilder
Specify the http client that used by this service.
§Notes
This API is part of OpenDAL’s Raw API. HttpClient
could be changed
during minor updates.
Trait Implementations§
§impl Builder for HttpBuilder
impl Builder for HttpBuilder
§impl Debug for HttpBuilder
impl Debug for HttpBuilder
§impl Default for HttpBuilder
impl Default for HttpBuilder
§fn default() -> HttpBuilder
fn default() -> HttpBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HttpBuilder
impl !RefUnwindSafe for HttpBuilder
impl Send for HttpBuilder
impl Sync for HttpBuilder
impl Unpin for HttpBuilder
impl !UnwindSafe for HttpBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request