rbxsoap
A lightweight rust library for communicating with RCCService (Roblox Cloud Compute Service)
Examples
Basic configuration:
use RccSoapMessages;
let config = RccConfig ;
let rcc = newwith_config;
Get all jobs:
use RccSoapMessages;
let rcc = new;
let endpoint = "http://localhost:64989";
match rcc.get_all_jobs
Open job:
use RccSoapMessages;
use Uuid;
let rcc = new;
let endpoint = "http://localhost:64989";
let job_id = new_v4.to_string;
let response = rcc.open_job?;
Open JSON job:
[!NOTE] JSON jobs can only be used on version 0.314.0.159032 and above
use RccSoapMessages;
let rcc = new;
let endpoint = "http://localhost:64989";
let game_json = rcc.format_game_open_json;
let response = rcc.open_job?;
Contribution
Want to contribute? Simply create a pull request, or if you are experiencing problems please open an issue.