pub struct SupportHours {
pub type_: SupportHoursType,
pub time_zone: String,
pub start_time: NaiveTime,
pub end_time: NaiveTime,
pub days_of_week: Vec<i32>,
}
Expand description
The support hours.
Fields§
§type_: SupportHoursType
The type.
time_zone: String
The time zone for the support hours.
start_time: NaiveTime
The support hours’ starting time of day (date portion is ignored).
end_time: NaiveTime
The support hours’ ending time of day (date portion is ignored).
days_of_week: Vec<i32>
The days of the week.
Trait Implementations§
Source§impl Clone for SupportHours
impl Clone for SupportHours
Source§fn clone(&self) -> SupportHours
fn clone(&self) -> SupportHours
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 SupportHours
impl Debug for SupportHours
Source§impl<'de> Deserialize<'de> for SupportHours
impl<'de> Deserialize<'de> for SupportHours
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 JsonSchema for SupportHours
impl JsonSchema for SupportHours
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for SupportHours
impl PartialEq for SupportHours
Source§impl Serialize for SupportHours
impl Serialize for SupportHours
impl StructuralPartialEq for SupportHours
Auto Trait Implementations§
impl Freeze for SupportHours
impl RefUnwindSafe for SupportHours
impl Send for SupportHours
impl Sync for SupportHours
impl Unpin for SupportHours
impl UnwindSafe for SupportHours
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