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§
Source§impl Clone for ProviderInfo
impl Clone for ProviderInfo
Source§fn clone(&self) -> ProviderInfo
fn clone(&self) -> ProviderInfo
Returns a duplicate 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 ProviderInfo
impl Debug for ProviderInfo
Source§impl Hash for ProviderInfo
impl Hash for ProviderInfo
Source§impl PartialEq for ProviderInfo
impl PartialEq for ProviderInfo
impl Eq for ProviderInfo
impl StructuralPartialEq for ProviderInfo
Auto Trait Implementations§
impl Freeze for ProviderInfo
impl RefUnwindSafe for ProviderInfo
impl Send for ProviderInfo
impl Sync for ProviderInfo
impl Unpin for ProviderInfo
impl UnwindSafe for ProviderInfo
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