[−][src]Enum opcua_server::prelude::MessageSecurityMode
The MessageSecurityMode is an enumeration that specifies what security should be applied to messages exchanges during a Session.
Variants
InvalidThe MessageSecurityMode is invalid. This value is the default value to ensure that unless explicitly set, a connection will be rejected.
NoneNo security is applied. This assumes a plaintext security policy.
SignAll messages are signed but not encrypted.
SignAndEncryptAll messages are signed and encrypted.
Trait Implementations
impl BinaryEncoder<MessageSecurityMode> for MessageSecurityMode[src]
fn byte_len(&self) -> usize[src]
fn encode<S>(&self, stream: &mut S) -> Result<usize, StatusCode> where
S: Write, [src]
S: Write,
fn decode<S>(
stream: &mut S,
&DecodingLimits
) -> Result<MessageSecurityMode, StatusCode> where
S: Read, [src]
stream: &mut S,
&DecodingLimits
) -> Result<MessageSecurityMode, StatusCode> where
S: Read,
fn to_vec(&self) -> Vec<u8>[src]
impl Clone for MessageSecurityMode[src]
fn clone(&self) -> MessageSecurityMode[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Display for MessageSecurityMode[src]
impl Copy for MessageSecurityMode[src]
impl<'a> From<&'a str> for MessageSecurityMode[src]
fn from(str: &'a str) -> MessageSecurityMode[src]
impl PartialOrd<MessageSecurityMode> for MessageSecurityMode[src]
fn partial_cmp(&self, other: &MessageSecurityMode) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl PartialEq<MessageSecurityMode> for MessageSecurityMode[src]
fn eq(&self, other: &MessageSecurityMode) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Debug for MessageSecurityMode[src]
Auto Trait Implementations
impl Send for MessageSecurityMode
impl Sync for MessageSecurityMode
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From for T[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.