pub struct ConvocationRecipientResponse {Show 19 fields
pub id: Uuid,
pub convocation_id: Uuid,
pub owner_id: Uuid,
pub email: String,
pub email_sent_at: Option<DateTime<Utc>>,
pub email_opened_at: Option<DateTime<Utc>>,
pub email_failed: bool,
pub email_failure_reason: Option<String>,
pub reminder_sent_at: Option<DateTime<Utc>>,
pub reminder_opened_at: Option<DateTime<Utc>>,
pub attendance_status: AttendanceStatus,
pub attendance_updated_at: Option<DateTime<Utc>>,
pub proxy_owner_id: Option<Uuid>,
pub has_opened_email: bool,
pub has_opened_reminder: bool,
pub needs_reminder: bool,
pub has_confirmed_attendance: bool,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§id: Uuid§convocation_id: Uuid§owner_id: Uuid§email: String§email_sent_at: Option<DateTime<Utc>>§email_opened_at: Option<DateTime<Utc>>§email_failed: bool§email_failure_reason: Option<String>§reminder_sent_at: Option<DateTime<Utc>>§reminder_opened_at: Option<DateTime<Utc>>§attendance_status: AttendanceStatus§attendance_updated_at: Option<DateTime<Utc>>§proxy_owner_id: Option<Uuid>§has_opened_email: bool§has_opened_reminder: bool§needs_reminder: bool§has_confirmed_attendance: bool§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for ConvocationRecipientResponse
impl Clone for ConvocationRecipientResponse
Source§fn clone(&self) -> ConvocationRecipientResponse
fn clone(&self) -> ConvocationRecipientResponse
Returns a duplicate 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 ConvocationRecipientResponse
impl Debug for ConvocationRecipientResponse
Source§impl<'de> Deserialize<'de> for ConvocationRecipientResponse
impl<'de> Deserialize<'de> for ConvocationRecipientResponse
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 From<ConvocationRecipient> for ConvocationRecipientResponse
impl From<ConvocationRecipient> for ConvocationRecipientResponse
Source§fn from(recipient: ConvocationRecipient) -> Self
fn from(recipient: ConvocationRecipient) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConvocationRecipientResponse
impl RefUnwindSafe for ConvocationRecipientResponse
impl Send for ConvocationRecipientResponse
impl Sync for ConvocationRecipientResponse
impl Unpin for ConvocationRecipientResponse
impl UnwindSafe for ConvocationRecipientResponse
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
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.