This service can be used to:
endpoint: Set the endpoint for backend.container: Swift container.token: Swift personal access token.Refer to [SwiftBuilder]'s public API docs for more information.
use opendal_core::Operator; use opendal_core::Result; use opendal_service_swift::Swift; #[tokio::main] async fn main() -> Result<()> { // Create Swift backend builder let mut builder = Swift::default() // Set the root for swift, all operations will happen under this root .root("/path/to/dir") // set the endpoint of Swift backend .endpoint("https://openstack-controller.example.com:8080/v1/account") // set the container name of Swift workspace .container("container") // set the auth token for builder .token("token"); let op: Operator = Operator::new(builder)?.finish(); Ok(()) }