pub struct PersesDatasourceConfig {
pub default: bool,
pub display: Option<PersesDatasourceConfigDisplay>,
pub plugin: PersesDatasourceConfigPlugin,
}Expand description
config specifies the Perses datasource configuration
Fields§
§default: bool§display: Option<PersesDatasourceConfigDisplay>§plugin: PersesDatasourceConfigPluginPlugin will contain the datasource configuration. The data typed is available in Cue.
Trait Implementations§
Source§impl Clone for PersesDatasourceConfig
impl Clone for PersesDatasourceConfig
Source§fn clone(&self) -> PersesDatasourceConfig
fn clone(&self) -> PersesDatasourceConfig
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 PersesDatasourceConfig
impl Debug for PersesDatasourceConfig
Source§impl Default for PersesDatasourceConfig
impl Default for PersesDatasourceConfig
Source§fn default() -> PersesDatasourceConfig
fn default() -> PersesDatasourceConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PersesDatasourceConfig
impl<'de> Deserialize<'de> for PersesDatasourceConfig
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 PersesDatasourceConfig
impl PartialEq for PersesDatasourceConfig
Source§fn eq(&self, other: &PersesDatasourceConfig) -> bool
fn eq(&self, other: &PersesDatasourceConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PersesDatasourceConfig
impl Serialize for PersesDatasourceConfig
impl StructuralPartialEq for PersesDatasourceConfig
Auto Trait Implementations§
impl Freeze for PersesDatasourceConfig
impl RefUnwindSafe for PersesDatasourceConfig
impl Send for PersesDatasourceConfig
impl Sync for PersesDatasourceConfig
impl Unpin for PersesDatasourceConfig
impl UnsafeUnpin for PersesDatasourceConfig
impl UnwindSafe for PersesDatasourceConfig
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