namespace AIStudio.Tools.Rust; /// /// The response from the set clipboard operation. /// /// True, when the operation was successful. /// The issues, which occurred during the operation, empty when successful. public readonly record struct SetClipboardResponse(bool Success, string Issue);