pub struct IntraDaySegmentSchemaConfig {
pub name: String,
pub start: String,
pub end: String,
pub multiplier: f64,
pub posting_type: String,
}Expand description
Intra-day segment configuration.
Fields§
§name: StringName of the segment (e.g., “morning_spike”, “lunch_dip”).
start: StringStart time (HH:MM format).
end: StringEnd time (HH:MM format).
multiplier: f64Activity multiplier (1.0 = normal).
posting_type: StringPosting type: “human”, “system”, “both”.
Trait Implementations§
Source§impl Clone for IntraDaySegmentSchemaConfig
impl Clone for IntraDaySegmentSchemaConfig
Source§fn clone(&self) -> IntraDaySegmentSchemaConfig
fn clone(&self) -> IntraDaySegmentSchemaConfig
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 IntraDaySegmentSchemaConfig
impl Debug for IntraDaySegmentSchemaConfig
Source§impl<'de> Deserialize<'de> for IntraDaySegmentSchemaConfig
impl<'de> Deserialize<'de> for IntraDaySegmentSchemaConfig
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
Auto Trait Implementations§
impl Freeze for IntraDaySegmentSchemaConfig
impl RefUnwindSafe for IntraDaySegmentSchemaConfig
impl Send for IntraDaySegmentSchemaConfig
impl Sync for IntraDaySegmentSchemaConfig
impl Unpin for IntraDaySegmentSchemaConfig
impl UnwindSafe for IntraDaySegmentSchemaConfig
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