Struct grpcio_sys::grpc_channel_info [−][src]
#[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
Auto Trait Implementations
impl RefUnwindSafe for grpc_channel_info
impl !Send for grpc_channel_info
impl !Sync for grpc_channel_info
impl Unpin for grpc_channel_info
impl UnwindSafe for grpc_channel_info
Blanket Implementations
Mutably borrows from an owned value. Read more