SummaryGridLine

Struct SummaryGridLine 

Source
pub struct SummaryGridLine {
Show 35 fields pub am_extended_status_id: i64, pub am_status: i16, pub am_status_desc: String, pub am_status_export_identifier: String, pub am_status_period_calc_not_marked: bool, pub counted_absence: bool, pub counted_absence_export_identifier: Option<String>, pub counted_absence_reason_desc: String, pub counted_absence_reason_status: Option<i32>, pub date: String, pub date_equality_property: String, pub day_of_week: i8, pub most_prevalent_desc: String, pub most_prevalent_export_identifier: Option<String>, pub most_prevalent_status: Option<i16>, pub partial_absence: bool, pub partial_day_export_identifier: String, pub pm_extended_status_id: i32, pub pm_status: i16, pub pm_status_desc: String, pub pm_status_export_identifier: String, pub pm_status_period_calc_not_marked: bool, pub qld_half_day_code_am: i8, pub qld_half_day_code_pm: i8, pub time_amount_absent: i64, pub time_amount_absent_counted: i64, pub time_amount_absent_not_counted: i64, pub time_amount_arrived_late_am: Option<String>, pub time_amount_arrived_late_pm: Option<String>, pub time_amount_expected: i64, pub time_amount_not_marked: i64, pub time_amount_unscheduled: i64, pub user_id: i32, pub whole_day_absence: bool, pub whole_day_export_identifier: String,
}

Fields§

§am_extended_status_id: i64§am_status: i16§am_status_desc: String§am_status_export_identifier: String§am_status_period_calc_not_marked: bool§counted_absence: bool§counted_absence_export_identifier: Option<String>§counted_absence_reason_desc: String§counted_absence_reason_status: Option<i32>§date: String§date_equality_property: String§day_of_week: i8§most_prevalent_desc: String§most_prevalent_export_identifier: Option<String>§most_prevalent_status: Option<i16>§partial_absence: bool§partial_day_export_identifier: String§pm_extended_status_id: i32§pm_status: i16§pm_status_desc: String§pm_status_export_identifier: String§pm_status_period_calc_not_marked: bool§qld_half_day_code_am: i8§qld_half_day_code_pm: i8§time_amount_absent: i64§time_amount_absent_counted: i64§time_amount_absent_not_counted: i64§time_amount_arrived_late_am: Option<String>§time_amount_arrived_late_pm: Option<String>§time_amount_expected: i64§time_amount_not_marked: i64§time_amount_unscheduled: i64§user_id: i32§whole_day_absence: bool§whole_day_export_identifier: String

Trait Implementations§

Source§

impl Debug for SummaryGridLine

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for SummaryGridLine

Source§

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 Serialize for SummaryGridLine

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,