Struct opcua_server::prelude::ApplicationDescription
source · pub struct ApplicationDescription {
pub application_uri: UAString,
pub product_uri: UAString,
pub application_name: LocalizedText,
pub application_type: ApplicationType,
pub gateway_server_uri: UAString,
pub discovery_profile_uri: UAString,
pub discovery_urls: Option<Vec<UAString, Global>>,
}Expand description
Describes an application and how to find it.
Fields§
§application_uri: UAString§product_uri: UAString§application_name: LocalizedText§application_type: ApplicationType§gateway_server_uri: UAString§discovery_profile_uri: UAString§discovery_urls: Option<Vec<UAString, Global>>Implementations§
source§impl ApplicationDescription
impl ApplicationDescription
pub fn null() -> ApplicationDescription
Trait Implementations§
source§impl BinaryEncoder<ApplicationDescription> for ApplicationDescription
impl BinaryEncoder<ApplicationDescription> for ApplicationDescription
source§fn byte_len(&self) -> usize
fn byte_len(&self) -> usize
Returns the byte length of the structure. This calculation should be exact and as efficient
as possible. Read more
source§fn encode<S>(&self, stream: &mut S) -> Result<usize, StatusCode>where
S: Write,
fn encode<S>(&self, stream: &mut S) -> Result<usize, StatusCode>where
S: Write,
Encodes the instance to the write stream.
source§fn decode<S>(
stream: &mut S,
decoding_limits: &DecodingLimits
) -> Result<ApplicationDescription, StatusCode>where
S: Read,
fn decode<S>(
stream: &mut S,
decoding_limits: &DecodingLimits
) -> Result<ApplicationDescription, StatusCode>where
S: Read,
Decodes an instance from the read stream. The decoding limits are restrictions set by the server / client
on the length of strings, arrays etc. If these limits are exceeded the implementation should
return with a
BadDecodingError as soon as possible. Read morefn to_vec(&self) -> Vec<u8, Global> ⓘ
source§impl Clone for ApplicationDescription
impl Clone for ApplicationDescription
source§fn clone(&self) -> ApplicationDescription
fn clone(&self) -> ApplicationDescription
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 ApplicationDescription
impl Debug for ApplicationDescription
source§impl From<ApplicationDescription> for X509Data
impl From<ApplicationDescription> for X509Data
source§fn from(application_description: ApplicationDescription) -> X509Data
fn from(application_description: ApplicationDescription) -> X509Data
Converts to this type from the input type.