pub struct DateTimeParameter {
pub name: String,
pub values: Vec<f64>,
}Expand description
A date-time parameter.
Fields§
§name: StringA display name for the date-time parameter.
values: Vec<f64>The values for the date-time parameter.
Trait Implementations§
Source§impl Clone for DateTimeParameter
impl Clone for DateTimeParameter
Source§fn clone(&self) -> DateTimeParameter
fn clone(&self) -> DateTimeParameter
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 DateTimeParameter
impl Debug for DateTimeParameter
Source§impl Default for DateTimeParameter
impl Default for DateTimeParameter
Source§fn default() -> DateTimeParameter
fn default() -> DateTimeParameter
Returns the “default value” for a type. Read more
Source§impl PartialEq for DateTimeParameter
impl PartialEq for DateTimeParameter
Source§impl Serialize for DateTimeParameter
impl Serialize for DateTimeParameter
impl StructuralPartialEq for DateTimeParameter
Auto Trait Implementations§
impl Freeze for DateTimeParameter
impl RefUnwindSafe for DateTimeParameter
impl Send for DateTimeParameter
impl Sync for DateTimeParameter
impl Unpin for DateTimeParameter
impl UnwindSafe for DateTimeParameter
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