Struct grpcio_sys::grpc_channel_info
source · #[repr(C)]pub struct grpc_channel_info {
pub lb_policy_name: *mut *mut c_char,
pub service_config_json: *mut *mut c_char,
}
Expand description
Information requested from the channel.
Fields§
§lb_policy_name: *mut *mut c_char
If non-NULL, will be set to point to a string indicating the LB policy name. Caller takes ownership.
service_config_json: *mut *mut c_char
If non-NULL, will be set to point to a string containing the service config used by the channel in JSON form.
Trait Implementations§
source§impl Clone for grpc_channel_info
impl Clone for grpc_channel_info
source§fn clone(&self) -> grpc_channel_info
fn clone(&self) -> grpc_channel_info
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more