pub struct TelemetryExportResult {
pub export_id: Option<String>,
pub format: Option<String>,
pub authoritative: Option<bool>,
pub attributes: Option<HashMap<String, String>>,
pub exported_at: Option<String>,
}Fields§
§export_id: Option<String>§format: Option<String>§attributes: Option<HashMap<String, String>>§exported_at: Option<String>Implementations§
Source§impl TelemetryExportResult
impl TelemetryExportResult
pub fn new() -> TelemetryExportResult
Trait Implementations§
Source§impl Clone for TelemetryExportResult
impl Clone for TelemetryExportResult
Source§fn clone(&self) -> TelemetryExportResult
fn clone(&self) -> TelemetryExportResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TelemetryExportResult
impl Debug for TelemetryExportResult
Source§impl Default for TelemetryExportResult
impl Default for TelemetryExportResult
Source§fn default() -> TelemetryExportResult
fn default() -> TelemetryExportResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TelemetryExportResult
impl<'de> Deserialize<'de> for TelemetryExportResult
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 TelemetryExportResult
impl PartialEq for TelemetryExportResult
Source§fn eq(&self, other: &TelemetryExportResult) -> bool
fn eq(&self, other: &TelemetryExportResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TelemetryExportResult
impl Serialize for TelemetryExportResult
impl StructuralPartialEq for TelemetryExportResult
Auto Trait Implementations§
impl Freeze for TelemetryExportResult
impl RefUnwindSafe for TelemetryExportResult
impl Send for TelemetryExportResult
impl Sync for TelemetryExportResult
impl Unpin for TelemetryExportResult
impl UnsafeUnpin for TelemetryExportResult
impl UnwindSafe for TelemetryExportResult
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