pub struct SetTimeDomainParams {
pub timeDomain: String,
}Expand description
Sets time domain to use for collecting and reporting duration metrics. Note that this must be called before enabling metrics collection. Calling this method while metrics collection is enabled returns an error.
Fields§
§timeDomain: StringTime domain
Implementations§
Trait Implementations§
Source§impl CdpCommand for SetTimeDomainParams
impl CdpCommand for SetTimeDomainParams
Source§impl Clone for SetTimeDomainParams
impl Clone for SetTimeDomainParams
Source§fn clone(&self) -> SetTimeDomainParams
fn clone(&self) -> SetTimeDomainParams
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 SetTimeDomainParams
impl Debug for SetTimeDomainParams
Source§impl Default for SetTimeDomainParams
impl Default for SetTimeDomainParams
Source§fn default() -> SetTimeDomainParams
fn default() -> SetTimeDomainParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetTimeDomainParams
impl<'de> Deserialize<'de> for SetTimeDomainParams
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 SetTimeDomainParams
impl RefUnwindSafe for SetTimeDomainParams
impl Send for SetTimeDomainParams
impl Sync for SetTimeDomainParams
impl Unpin for SetTimeDomainParams
impl UnsafeUnpin for SetTimeDomainParams
impl UnwindSafe for SetTimeDomainParams
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