Struct parsec_interface::operations::list_providers::ProviderInfo [−][src]
pub struct ProviderInfo {
pub uuid: Uuid,
pub description: String,
pub vendor: String,
pub version_maj: u32,
pub version_min: u32,
pub version_rev: u32,
pub id: ProviderId,
}Expand description
Structure holding the basic information that defines the providers in the service for client discovery.
Fields
uuid: UuidUnique, permanent, identifier of the provider.
description: StringShort description of the provider.
vendor: StringProvider vendor.
version_maj: u32Provider implementation version major.
version_min: u32Provider implementation version minor.
version_rev: u32Provider implementation version revision number.
id: ProviderIdProvider ID to use on the wire protocol to communicate with this provider.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ProviderInfo
impl Send for ProviderInfo
impl Sync for ProviderInfo
impl Unpin for ProviderInfo
impl UnwindSafe for ProviderInfo
Blanket Implementations
Mutably borrows from an owned value. Read more