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: Uuid
Unique, permanent, identifier of the provider.
description: String
Short description of the provider.
vendor: String
Provider vendor.
version_maj: u32
Provider implementation version major.
version_min: u32
Provider implementation version minor.
version_rev: u32
Provider implementation version revision number.
id: ProviderId
Provider 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 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 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