pub struct HandoffOfferRecord {
pub handoff_id: String,
pub target_participant: String,
pub scope: String,
pub reason: String,
pub offered_by: String,
pub disposition: HandoffDisposition,
pub accepted_by: Option<String>,
pub declined_by: Option<String>,
pub outcome_reason: Option<String>,
pub offered_at_ms: i64,
}Fields§
§handoff_id: String§target_participant: String§scope: String§reason: String§offered_by: String§disposition: HandoffDisposition§accepted_by: Option<String>§declined_by: Option<String>§outcome_reason: Option<String>§offered_at_ms: i64Trait Implementations§
Source§impl Clone for HandoffOfferRecord
impl Clone for HandoffOfferRecord
Source§fn clone(&self) -> HandoffOfferRecord
fn clone(&self) -> HandoffOfferRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HandoffOfferRecord
impl Debug for HandoffOfferRecord
Source§impl<'de> Deserialize<'de> for HandoffOfferRecord
impl<'de> Deserialize<'de> for HandoffOfferRecord
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
Auto Trait Implementations§
impl Freeze for HandoffOfferRecord
impl RefUnwindSafe for HandoffOfferRecord
impl Send for HandoffOfferRecord
impl Sync for HandoffOfferRecord
impl Unpin for HandoffOfferRecord
impl UnsafeUnpin for HandoffOfferRecord
impl UnwindSafe for HandoffOfferRecord
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