Struct grafana_plugin_sdk::pluginv2::PluginContext
source · pub struct PluginContext {
pub org_id: i64,
pub plugin_id: String,
pub user: Option<User>,
pub app_instance_settings: Option<AppInstanceSettings>,
pub data_source_instance_settings: Option<DataSourceInstanceSettings>,
}
Fields§
§org_id: i64
The Grafana organization id the request originating from.
plugin_id: String
The unique identifier of the plugin the request originating from.
user: Option<User>
The Grafana user the request originating from.
Will not be provided if Grafana backend initiated the request.
app_instance_settings: Option<AppInstanceSettings>
App plugin instance settings is the configured app instance settings. In Grafana an app instance is an enabled app plugin in a Grafana organization.
Will only be set if request targeting an app instance.
data_source_instance_settings: Option<DataSourceInstanceSettings>
Data source instance settings is the configured data source instance settings. In Grafana a data source instance is a created data source in a Grafana organization.
Will only be set if request targeting a data source instance.
Trait Implementations§
source§impl Clone for PluginContext
impl Clone for PluginContext
source§fn clone(&self) -> PluginContext
fn clone(&self) -> PluginContext
Returns a copy 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 PluginContext
impl Debug for PluginContext
source§impl Default for PluginContext
impl Default for PluginContext
source§impl Message for PluginContext
impl Message for PluginContext
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.source§impl PartialEq for PluginContext
impl PartialEq for PluginContext
source§fn eq(&self, other: &PluginContext) -> bool
fn eq(&self, other: &PluginContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<PluginContext> for PluginContext
impl TryFrom<PluginContext> for PluginContext
§type Error = ConvertFromError
type Error = ConvertFromError
The type returned in the event of a conversion error.
impl StructuralPartialEq for PluginContext
Auto Trait Implementations§
impl RefUnwindSafe for PluginContext
impl Send for PluginContext
impl Sync for PluginContext
impl Unpin for PluginContext
impl UnwindSafe for PluginContext
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request