We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31d6566 commit f34df3aCopy full SHA for f34df3a
1 file changed
azure_devops_rust_api/examples/service_endpoint.rs
@@ -32,8 +32,8 @@ async fn main() -> Result<()> {
32
// Display the returned service endpoints
33
for endpoint in service_endpoints.iter() {
34
println!(
35
- "{:38} {:40} {}",
36
- endpoint.id, endpoint.name, endpoint.description
+ "{:38} {:40} {:?}",
+ endpoint.id, endpoint.name, endpoint.description.as_deref().unwrap_or("")
37
);
38
}
39
0 commit comments