pub struct GetSignalsReportParams {
pub from: String,
pub to: Option<String>,
pub signal_type: Option<String>,
}
Expand description
struct for passing parameters to the method get_signals_report
Fields§
§from: String
The start of a time range in RFC 3339 format.
to: Option<String>
The end of a time range in RFC 3339 format. Defaults to the current time.
signal_type: Option<String>
The type of signal
Trait Implementations§
Source§impl Clone for GetSignalsReportParams
impl Clone for GetSignalsReportParams
Source§fn clone(&self) -> GetSignalsReportParams
fn clone(&self) -> GetSignalsReportParams
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 GetSignalsReportParams
impl Debug for GetSignalsReportParams
Source§impl Default for GetSignalsReportParams
impl Default for GetSignalsReportParams
Source§fn default() -> GetSignalsReportParams
fn default() -> GetSignalsReportParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSignalsReportParams
impl RefUnwindSafe for GetSignalsReportParams
impl Send for GetSignalsReportParams
impl Sync for GetSignalsReportParams
impl Unpin for GetSignalsReportParams
impl UnwindSafe for GetSignalsReportParams
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