pub struct DayRangeDto {
pub schema_version: String,
pub ruleset_id: String,
pub ruleset_version: String,
pub profile: String,
pub generated_at: String,
pub start: String,
pub end: String,
pub days: Vec<DayBundleDto>,
}Fields§
§schema_version: String§ruleset_id: String§ruleset_version: String§profile: String§generated_at: String§start: String§end: String§days: Vec<DayBundleDto>Trait Implementations§
Source§impl Clone for DayRangeDto
impl Clone for DayRangeDto
Source§fn clone(&self) -> DayRangeDto
fn clone(&self) -> DayRangeDto
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 DayRangeDto
impl Debug for DayRangeDto
Source§impl<'de> Deserialize<'de> for DayRangeDto
impl<'de> Deserialize<'de> for DayRangeDto
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 DayRangeDto
impl RefUnwindSafe for DayRangeDto
impl Send for DayRangeDto
impl Sync for DayRangeDto
impl Unpin for DayRangeDto
impl UnsafeUnpin for DayRangeDto
impl UnwindSafe for DayRangeDto
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