We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Example:
use flow_rust_sdk::*; #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { let mut connection = FlowConnection::new("grpc://localhost:3569").await?; let script = b" pub fun main(): String { return \"Hello World!\" } "; let arguments: Vec<Vec<u8>> = vec![]; let result: Value = from_slice( &connection .execute_script(script.to_vec(), arguments) .await? .value, )?; println!("Script result: {}", result["value"]); Ok(()) }