pub struct ProviderAuctionRequest {
pub provider_ref: String,
pub binding_name: String,
pub constraints: HashMap<String, String>,
}
Expand description
A request sent out to all listening hosts on the bus to launch a given capability provider with the set of constraints
Fields§
§provider_ref: String
§binding_name: String
§constraints: HashMap<String, String>
Implementations§
Trait Implementations§
Source§impl Clone for ProviderAuctionRequest
impl Clone for ProviderAuctionRequest
Source§fn clone(&self) -> ProviderAuctionRequest
fn clone(&self) -> ProviderAuctionRequest
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 ProviderAuctionRequest
impl Debug for ProviderAuctionRequest
Source§impl<'de> Deserialize<'de> for ProviderAuctionRequest
impl<'de> Deserialize<'de> for ProviderAuctionRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProviderAuctionRequest
impl PartialEq for ProviderAuctionRequest
Source§impl Serialize for ProviderAuctionRequest
impl Serialize for ProviderAuctionRequest
impl StructuralPartialEq for ProviderAuctionRequest
Auto Trait Implementations§
impl Freeze for ProviderAuctionRequest
impl RefUnwindSafe for ProviderAuctionRequest
impl Send for ProviderAuctionRequest
impl Sync for ProviderAuctionRequest
impl Unpin for ProviderAuctionRequest
impl UnwindSafe for ProviderAuctionRequest
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