pub struct ConvocationResponse {Show 24 fields
pub id: Uuid,
pub organization_id: Uuid,
pub building_id: Uuid,
pub meeting_id: Uuid,
pub meeting_type: ConvocationType,
pub meeting_date: DateTime<Utc>,
pub status: ConvocationStatus,
pub minimum_send_date: DateTime<Utc>,
pub actual_send_date: Option<DateTime<Utc>>,
pub scheduled_send_date: Option<DateTime<Utc>>,
pub pdf_file_path: Option<String>,
pub language: String,
pub total_recipients: i32,
pub opened_count: i32,
pub will_attend_count: i32,
pub will_not_attend_count: i32,
pub opening_rate: f64,
pub attendance_rate: f64,
pub days_until_meeting: i64,
pub respects_legal_deadline: bool,
pub reminder_sent_at: Option<DateTime<Utc>>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub created_by: Uuid,
}Fields§
§id: Uuid§organization_id: Uuid§building_id: Uuid§meeting_id: Uuid§meeting_type: ConvocationType§meeting_date: DateTime<Utc>§status: ConvocationStatus§minimum_send_date: DateTime<Utc>§actual_send_date: Option<DateTime<Utc>>§scheduled_send_date: Option<DateTime<Utc>>§pdf_file_path: Option<String>§language: String§total_recipients: i32§opened_count: i32§will_attend_count: i32§will_not_attend_count: i32§opening_rate: f64§attendance_rate: f64§days_until_meeting: i64§respects_legal_deadline: bool§reminder_sent_at: Option<DateTime<Utc>>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§created_by: UuidTrait Implementations§
Source§impl Clone for ConvocationResponse
impl Clone for ConvocationResponse
Source§fn clone(&self) -> ConvocationResponse
fn clone(&self) -> ConvocationResponse
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 ConvocationResponse
impl Debug for ConvocationResponse
Source§impl<'de> Deserialize<'de> for ConvocationResponse
impl<'de> Deserialize<'de> for ConvocationResponse
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<Convocation> for ConvocationResponse
impl From<Convocation> for ConvocationResponse
Source§fn from(convocation: Convocation) -> Self
fn from(convocation: Convocation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConvocationResponse
impl RefUnwindSafe for ConvocationResponse
impl Send for ConvocationResponse
impl Sync for ConvocationResponse
impl Unpin for ConvocationResponse
impl UnwindSafe for ConvocationResponse
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.