pub struct WindowInput {
pub start: String,
}Expand description
WindowInput : Contains only a starting DateTime.
Fields§
§start: StringThe start date of the window. In ISO 8601 datetime format with minute precision. Supports patterns yyyy-MM-ddTHH:mmZ, yyyy-MM-ddTHH:mm:ssZ, or yyyy-MM-ddTHH:mm:ss.sssZ. Note that non-zero second and millisecond components are removed.
Implementations§
Source§impl WindowInput
impl WindowInput
Sourcepub fn new(start: String) -> WindowInput
pub fn new(start: String) -> WindowInput
Contains only a starting DateTime.
Trait Implementations§
Source§impl Clone for WindowInput
impl Clone for WindowInput
Source§fn clone(&self) -> WindowInput
fn clone(&self) -> WindowInput
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 WindowInput
impl Debug for WindowInput
Source§impl Default for WindowInput
impl Default for WindowInput
Source§fn default() -> WindowInput
fn default() -> WindowInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WindowInput
impl<'de> Deserialize<'de> for WindowInput
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 PartialEq for WindowInput
impl PartialEq for WindowInput
Source§impl Serialize for WindowInput
impl Serialize for WindowInput
impl StructuralPartialEq for WindowInput
Auto Trait Implementations§
impl Freeze for WindowInput
impl RefUnwindSafe for WindowInput
impl Send for WindowInput
impl Sync for WindowInput
impl Unpin for WindowInput
impl UnwindSafe for WindowInput
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