#[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 Freeze for grpc_channel_info
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