pub struct ControllerEndpoint {
pub name: String,
pub host: String,
pub port: u16,
pub security_protocol: i16,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§name: String§host: String§port: u16§security_protocol: i16§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for ControllerEndpoint
impl Clone for ControllerEndpoint
Source§fn clone(&self) -> ControllerEndpoint
fn clone(&self) -> ControllerEndpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ControllerEndpoint
impl Debug for ControllerEndpoint
Source§impl Decode<'_> for ControllerEndpoint
impl Decode<'_> for ControllerEndpoint
Source§impl Default for ControllerEndpoint
impl Default for ControllerEndpoint
Source§fn default() -> ControllerEndpoint
fn default() -> ControllerEndpoint
Returns the “default value” for a type. Read more
Source§impl Encode for ControllerEndpoint
impl Encode for ControllerEndpoint
impl Eq for ControllerEndpoint
Source§impl PartialEq for ControllerEndpoint
impl PartialEq for ControllerEndpoint
Source§fn eq(&self, other: &ControllerEndpoint) -> bool
fn eq(&self, other: &ControllerEndpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ControllerEndpoint
Auto Trait Implementations§
impl Freeze for ControllerEndpoint
impl RefUnwindSafe for ControllerEndpoint
impl Send for ControllerEndpoint
impl Sync for ControllerEndpoint
impl Unpin for ControllerEndpoint
impl UnsafeUnpin for ControllerEndpoint
impl UnwindSafe for ControllerEndpoint
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