pub struct CeremonyParticipant {
pub role_id: String,
pub specialty: String,
pub bound_at_millis: i64,
}Expand description
One seat at a ceremony, as a consumer sees it.
Fields§
§role_id: String§specialty: String§bound_at_millis: i64Trait Implementations§
Source§impl Clone for CeremonyParticipant
impl Clone for CeremonyParticipant
Source§fn clone(&self) -> CeremonyParticipant
fn clone(&self) -> CeremonyParticipant
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 CeremonyParticipant
impl Debug for CeremonyParticipant
Source§impl<'de> Deserialize<'de> for CeremonyParticipant
impl<'de> Deserialize<'de> for CeremonyParticipant
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
impl Eq for CeremonyParticipant
Source§impl PartialEq for CeremonyParticipant
impl PartialEq for CeremonyParticipant
Source§impl Serialize for CeremonyParticipant
impl Serialize for CeremonyParticipant
impl StructuralPartialEq for CeremonyParticipant
Auto Trait Implementations§
impl Freeze for CeremonyParticipant
impl RefUnwindSafe for CeremonyParticipant
impl Send for CeremonyParticipant
impl Sync for CeremonyParticipant
impl Unpin for CeremonyParticipant
impl UnsafeUnpin for CeremonyParticipant
impl UnwindSafe for CeremonyParticipant
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