pub struct ConvocationSummaryResponse {
pub id: Uuid,
pub meeting_id: Uuid,
pub meeting_date: DateTime<Utc>,
pub status: ConvocationStatus,
pub total_recipients: i32,
pub opened_count: i32,
pub will_attend_count: i32,
pub days_until_meeting: i64,
}Fields§
§id: Uuid§meeting_id: Uuid§meeting_date: DateTime<Utc>§status: ConvocationStatus§total_recipients: i32§opened_count: i32§will_attend_count: i32§days_until_meeting: i64Trait Implementations§
Source§impl Debug for ConvocationSummaryResponse
impl Debug for ConvocationSummaryResponse
Source§impl From<Convocation> for ConvocationSummaryResponse
impl From<Convocation> for ConvocationSummaryResponse
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 ConvocationSummaryResponse
impl RefUnwindSafe for ConvocationSummaryResponse
impl Send for ConvocationSummaryResponse
impl Sync for ConvocationSummaryResponse
impl Unpin for ConvocationSummaryResponse
impl UnwindSafe for ConvocationSummaryResponse
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
§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.