pub enum ReportDataSource {
Live,
Cache,
}Expand description
ReportDataSource
Origin of the data exposed by a report.
Variants§
Live
Rows were collected from live IC query calls.
Cache
Rows were read from a complete local snapshot.
Implementations§
Trait Implementations§
Source§impl Clone for ReportDataSource
impl Clone for ReportDataSource
Source§fn clone(&self) -> ReportDataSource
fn clone(&self) -> ReportDataSource
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 moreimpl Copy for ReportDataSource
Source§impl Debug for ReportDataSource
impl Debug for ReportDataSource
Source§impl<'de> Deserialize<'de> for ReportDataSource
impl<'de> Deserialize<'de> for ReportDataSource
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 Display for ReportDataSource
impl Display for ReportDataSource
impl Eq for ReportDataSource
Source§impl Ord for ReportDataSource
impl Ord for ReportDataSource
Source§fn cmp(&self, other: &ReportDataSource) -> Ordering
fn cmp(&self, other: &ReportDataSource) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReportDataSource
impl PartialEq for ReportDataSource
Source§impl PartialOrd for ReportDataSource
impl PartialOrd for ReportDataSource
Source§impl Serialize for ReportDataSource
impl Serialize for ReportDataSource
impl StructuralPartialEq for ReportDataSource
Auto Trait Implementations§
impl Freeze for ReportDataSource
impl RefUnwindSafe for ReportDataSource
impl Send for ReportDataSource
impl Sync for ReportDataSource
impl Unpin for ReportDataSource
impl UnsafeUnpin for ReportDataSource
impl UnwindSafe for ReportDataSource
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