pub struct Service(_);Expand description
A u16 port number or String port service name as is registered with
/etc/services or equivalent.
use questdb::ingress::Service;
use std::convert::Into;
let service: Service = 9009.into();or
use questdb::ingress::Service;
use std::convert::Into;
// Assuming the service name is registered.
let service: Service = "qdb_ilp".into(); // or with a String too.