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 moresource§impl Debug for grpc_channel_info
impl Debug for grpc_channel_info
impl Copy for grpc_channel_info
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more