### Basic Translation with ct2rs Source: https://docs.rs/ct2rs Translates multiple source strings using default settings. Requires a model path and returns results to standard output. Ensure the model path is valid. ```rust use ct2rs::{Config, Translator, TranslationOptions}; let sources = vec![ "Hallo World!", "This crate provides Rust bindings for CTranslate2." ]; let translator = Translator::new("/path/to/model", &Default::default())?; let results = translator.translate_batch(&sources, &Default::default(), None)?; for (r, _) in results{ println!("{}", r); } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.