pub struct EventAssociation {
pub id: String,
pub event_id: String,
pub path: String,
pub state: String,
pub candidates: Vec<CandidateAssociation>,
}Fields§
§id: String§event_id: String§path: String§state: String§candidates: Vec<CandidateAssociation>Trait Implementations§
Source§impl Clone for EventAssociation
impl Clone for EventAssociation
Source§fn clone(&self) -> EventAssociation
fn clone(&self) -> EventAssociation
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 EventAssociation
impl Debug for EventAssociation
Source§impl<'de> Deserialize<'de> for EventAssociation
impl<'de> Deserialize<'de> for EventAssociation
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 EventAssociation
impl RefUnwindSafe for EventAssociation
impl Send for EventAssociation
impl Sync for EventAssociation
impl Unpin for EventAssociation
impl UnsafeUnpin for EventAssociation
impl UnwindSafe for EventAssociation
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