pub struct PersesConfigDatasource {
pub disable_local: bool,
pub global: PersesConfigDatasourceGlobal,
pub project: PersesConfigDatasourceProject,
}Expand description
Datasource contains the configuration for the datasource.
Fields§
§disable_local: boolDisableLocal when used is preventing the possibility to add a datasource directly in the dashboard spec. It will also disable the associated proxy.
global: PersesConfigDatasourceGlobal§project: PersesConfigDatasourceProjectTrait Implementations§
Source§impl Clone for PersesConfigDatasource
impl Clone for PersesConfigDatasource
Source§fn clone(&self) -> PersesConfigDatasource
fn clone(&self) -> PersesConfigDatasource
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 PersesConfigDatasource
impl Debug for PersesConfigDatasource
Source§impl Default for PersesConfigDatasource
impl Default for PersesConfigDatasource
Source§fn default() -> PersesConfigDatasource
fn default() -> PersesConfigDatasource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PersesConfigDatasource
impl<'de> Deserialize<'de> for PersesConfigDatasource
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 PersesConfigDatasource
impl PartialEq for PersesConfigDatasource
Source§fn eq(&self, other: &PersesConfigDatasource) -> bool
fn eq(&self, other: &PersesConfigDatasource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PersesConfigDatasource
impl Serialize for PersesConfigDatasource
impl StructuralPartialEq for PersesConfigDatasource
Auto Trait Implementations§
impl Freeze for PersesConfigDatasource
impl RefUnwindSafe for PersesConfigDatasource
impl Send for PersesConfigDatasource
impl Sync for PersesConfigDatasource
impl Unpin for PersesConfigDatasource
impl UnsafeUnpin for PersesConfigDatasource
impl UnwindSafe for PersesConfigDatasource
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