pub struct ActorAuctionAck {
pub actor_ref: String,
pub host_id: String,
}
Expand description
One of a potential list of responses to an actor auction
Fields§
§actor_ref: String
The original actor reference used for the auction
host_id: String
The host ID of the “bidder” for this auction.
Trait Implementations§
source§impl Clone for ActorAuctionAck
impl Clone for ActorAuctionAck
source§fn clone(&self) -> ActorAuctionAck
fn clone(&self) -> ActorAuctionAck
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 ActorAuctionAck
impl Debug for ActorAuctionAck
source§impl Default for ActorAuctionAck
impl Default for ActorAuctionAck
source§fn default() -> ActorAuctionAck
fn default() -> ActorAuctionAck
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ActorAuctionAck
impl<'de> Deserialize<'de> for ActorAuctionAck
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<ActorAuctionAck> for ActorAuctionAck
impl PartialEq<ActorAuctionAck> for ActorAuctionAck
source§fn eq(&self, other: &ActorAuctionAck) -> bool
fn eq(&self, other: &ActorAuctionAck) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.