pub struct EndpointInfo {
pub endpoint_url: String,
pub security_policy: String,
pub security_policy_uri: String,
pub security_mode: SecurityMode,
pub security_level: u8,
pub supports_anonymous: bool,
pub supports_username: bool,
pub supports_certificate: bool,
}Fields§
§endpoint_url: String§security_policy: String§security_policy_uri: String§security_mode: SecurityMode§security_level: u8§supports_anonymous: bool§supports_username: bool§supports_certificate: boolTrait Implementations§
Source§impl Clone for EndpointInfo
impl Clone for EndpointInfo
Source§fn clone(&self) -> EndpointInfo
fn clone(&self) -> EndpointInfo
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 moreAuto Trait Implementations§
impl Freeze for EndpointInfo
impl RefUnwindSafe for EndpointInfo
impl Send for EndpointInfo
impl Sync for EndpointInfo
impl Unpin for EndpointInfo
impl UnsafeUnpin for EndpointInfo
impl UnwindSafe for EndpointInfo
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